Home Arrow Icon Knowledge base Arrow Icon Global Arrow Icon What are the steps to set up a cross-reference database with DBLINK for pg_cron
    pg_cron DBLINK PostgreSQL cross-reference database schedule jobs database management


What are the steps to set up a cross-reference database with DBLINK for pg_cron


here are the steps to set up a cross-reference database with DBLINK for using `pg_cron` across multiple databases:

Steps to Set Up a Cross-Reference Database with DBLINK

1. Create a Separate Database for `pg_cron` Metadata:
- Create a new database, e.g., `pg_cron`, to store the `pg_cron` metadata tables.
- In the `postgresql.conf` file, set the `cron.database_name` parameter to `'pg_cron'`:


     cron.database_name = 'pg_cron'
     

2. Create DBLINK Connections:
- In the `pg_cron` database, create DBLINK connections to the other databases where you want to schedule jobs.
- For example, to create a DBLINK connection to the `foo` database:

sql
     CREATE SERVER foo_server FOREIGN DATA WRAPPER postgres_fdw
     OPTIONS (host 'localhost', dbname 'foo', port '5432');

     CREATE USER MAPPING FOR current_user SERVER foo_server
     OPTIONS (user 'your_username', password 'your_password');
     

3. Schedule Jobs in Other Databases:
- In the `pg_cron` database, use the `cron.schedule_in_database()` function to schedule jobs in the other databases.
- For example, to schedule a job in the `foo` database:

sql
     SELECT cron.schedule_in_database('my_job', '* * * * *', 'SELECT my_function();', 'foo');
     

4. Manage Jobs Across Databases:
- You can use the `cron.job` table in the `pg_cron` database to view, modify, or delete scheduled jobs across all databases.
- For example, to view all scheduled jobs:

sql
     SELECT * FROM cron.job;
     

By following these steps, you can use `pg_cron` to schedule jobs across multiple databases in your PostgreSQL environment, even if `pg_cron` is only installed in a single database (the `pg_cron` database).

Citations:
[1] https://learn.microsoft.com/en-us/answers/questions/1062471/how-to-use-pg-cron-extension-in-multiple-databases
[2] https://github.com/citusdata/pg_cron/issues/89
[3] https://cloud.google.com/sql/docs/postgres/extensions
[4] https://aiven.io/docs/products/postgresql/howto/use-pg-cron-extension
[5] https://stackoverflow.com/questions/75869846/run-a-select-update-statement-against-a-specific-postgres-database