<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Postgres OnLine Journal - scheduling</title>
    <link>https://www.postgresonline.com/journal/</link>
    <description>Tips and tricks for PostgreSQL</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.6.0 - http://www.s9y.org/</generator>
    <pubDate>Tue, 14 Jul 2026 20:40:20 GMT</pubDate>

    <image>
    <url>https://www.postgresonline.com/journal/templates/default/img/s9y_banner_small.png</url>
    <title>RSS: Postgres OnLine Journal - scheduling - Tips and tricks for PostgreSQL</title>
    <link>https://www.postgresonline.com/journal/</link>
    <width>100</width>
    <height>21</height>
</image>

<item>
    <title>Replacing pgAgent with pg_timetable: Part 2 - Installing pg_timetable as a service in Linux </title>
    <link>https://www.postgresonline.com/journal/index.php?/archives/424-Replacing-pgAgent-with-pg_timetable-Part-2-Installing-pg_timetable-as-a-service-in-Linux.html</link>
            <category>contrib spotlight</category>
            <category>pg_timetable</category>
            <category>pgadmin</category>
            <category>pgagent</category>
    
    <comments>https://www.postgresonline.com/journal/index.php?/archives/424-Replacing-pgAgent-with-pg_timetable-Part-2-Installing-pg_timetable-as-a-service-in-Linux.html#comments</comments>
    <wfw:comment>https://www.postgresonline.com/journal/wfwcomment.php?cid=424</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://www.postgresonline.com/journal/rss.php?version=2.0&amp;type=comments&amp;cid=424</wfw:commentRss>
    

    <author>nospam@example.com (Leo Hsu and Regina Obe)</author>
    <content:encoded>
    &lt;p&gt;As stated in &lt;a href=&quot;https://www.postgresonline.com/journal/423-Replacing-pgAgent-with-pg_timetable-Part-1.html&quot; target=&quot;_blank&quot;&gt;Part 1, pgAgent is going away&lt;/a&gt;, so I&#039;m focussing on setting up pg_timetable as similar to pgAgent that I can.
For this second part, I&#039;m going to go over how to configure pg_timetable as a service on Linux.
&lt;/p&gt;

&lt;p&gt;A heads up, i really loved the pgAgent UI in pgAdmin so I&#039;m working on one for pg_timetable which is mostly patterned after the pgAgent one.  You can see the pull request work in progress &lt;a href=&quot;https://github.com/pgadmin-org/pgadmin4/pull/10152&quot;&gt;pg_timetable UI for pgAdmin&lt;/a&gt;. I&#039;m in the middle of cleaning up some loose ends before it is ready for commit.&lt;/p&gt; &lt;a class=&quot;block_level&quot; href=&quot;https://www.postgresonline.com/journal/index.php?/archives/424-Replacing-pgAgent-with-pg_timetable-Part-2-Installing-pg_timetable-as-a-service-in-Linux.html#extended&quot;&gt;Continue reading &quot;Replacing pgAgent with pg_timetable: Part 2 - Installing pg_timetable as a service in Linux &quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 14 Jul 2026 16:07:00 -0400</pubDate>
    <guid isPermaLink="false">https://www.postgresonline.com/journal/index.php?/archives/424-guid.html</guid>
    
</item>
<item>
    <title>Yum addendum for 8.3.5 and PgAgent</title>
    <link>https://www.postgresonline.com/journal/index.php?/archives/86-Yum-addendum-for-8.3.5-and-PgAgent.html</link>
            <category>8.3</category>
            <category>basics</category>
            <category>beginner</category>
            <category>pgadmin</category>
            <category>pgagent</category>
            <category>yum</category>
    
    <comments>https://www.postgresonline.com/journal/index.php?/archives/86-Yum-addendum-for-8.3.5-and-PgAgent.html#comments</comments>
    <wfw:comment>https://www.postgresonline.com/journal/wfwcomment.php?cid=86</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>https://www.postgresonline.com/journal/rss.php?version=2.0&amp;type=comments&amp;cid=86</wfw:commentRss>
    

    <author>nospam@example.com (Leo Hsu and Regina Obe)</author>
    <content:encoded>
    &lt;p&gt;We had the pleasure of doing a fresh install of PostgreSQL 8.3.5 on RedHat EL4 box and when using the Yum repository, we noticed a couple of changes from last time we did this.
This could have been an oversight in our documentation before.&lt;/p&gt;

&lt;h5&gt;Changes to Yum Install for 8.3.5?&lt;/h5&gt;
&lt;p&gt;In our April 2008 issue we had &lt;a href=&quot;https://www.postgresonline.com/journal/archives/45-An-Almost-Idiots-Guide-to-PostgreSQL-YUM.html&quot; target=&quot;_blank&quot;&gt;An Almost Idiot&#039;s Guide to PostgreSQL YUM&lt;/a&gt;
and that article still seems to be surprisingly popular.&lt;/p&gt;

&lt;p&gt;In the first step we had: 

&lt;br /&gt;
&lt;code&gt;yum install postgresql&lt;/code&gt;
&lt;br /&gt;
and that as I recall installed the postgresql server in addition to some client libraries.

&lt;/p&gt;

&lt;p&gt;For 8.3.5 fresh install it seems they are separated and to get the postgresql server you need to do: &lt;br /&gt;
&lt;pre&gt;
&lt;code&gt;yum install postgresql
yum install postgresql-server
&lt;/code&gt;
&lt;/pre&gt;
&lt;/p &lt;a class=&quot;block_level&quot; href=&quot;https://www.postgresonline.com/journal/index.php?/archives/86-Yum-addendum-for-8.3.5-and-PgAgent.html#extended&quot;&gt;Continue reading &quot;Yum addendum for 8.3.5 and PgAgent&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 26 Nov 2008 21:09:00 -0500</pubDate>
    <guid isPermaLink="false">https://www.postgresonline.com/journal/index.php?/archives/86-guid.html</guid>
    
</item>
<item>
    <title>Setting up PgAgent and Doing Scheduled Backups</title>
    <link>https://www.postgresonline.com/journal/index.php?/archives/19-Setting-up-PgAgent-and-Doing-Scheduled-Backups.html</link>
            <category>basics</category>
            <category>beginner</category>
            <category>mysql</category>
            <category>pgadmin</category>
            <category>pgagent</category>
            <category>sql server</category>
    
    <comments>https://www.postgresonline.com/journal/index.php?/archives/19-Setting-up-PgAgent-and-Doing-Scheduled-Backups.html#comments</comments>
    <wfw:comment>https://www.postgresonline.com/journal/wfwcomment.php?cid=19</wfw:comment>

    <slash:comments>38</slash:comments>
    <wfw:commentRss>https://www.postgresonline.com/journal/rss.php?version=2.0&amp;type=comments&amp;cid=19</wfw:commentRss>
    

    <author>nospam@example.com (Leo Hsu and Regina Obe)</author>
    <content:encoded>
    &lt;h4&gt;What is PgAgent?&lt;/h4&gt;
&lt;P&gt;PgAgent is a basic scheduling agent that comes packaged with PgAdmin III (since pre-8.0 or so) and that can be managed by PgAdmin III. 
PgAdmin III is the database administration tool that comes packaged with PostgreSQL.
For those familiar with
unix/linux cronjobs and crontab structure, PgAgent&#039;s scheduling structure should look very familiar.   
For those familiar with using Microsoft SQL Server Scheduling Agent or Windows Scheduling Tasks, but not used to crontab structure, 
the PgAdmin III Job Agent interface to PgAgent should look very welcoming, but the schedule tab may look a little unfamiliar. &lt;/p&gt;

&lt;P&gt;PgAgent can run both PostgreSQL stored functions and sql statements as well as OS shell commands and batch tasks.&lt;/P&gt; &lt;a class=&quot;block_level&quot; href=&quot;https://www.postgresonline.com/journal/index.php?/archives/19-Setting-up-PgAgent-and-Doing-Scheduled-Backups.html#extended&quot;&gt;Continue reading &quot;Setting up PgAgent and Doing Scheduled Backups&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 18 Jan 2008 23:56:00 -0500</pubDate>
    <guid isPermaLink="false">https://www.postgresonline.com/journal/index.php?/archives/19-guid.html</guid>
    
</item>

</channel>
</rss>
