diff --git a/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx b/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx index 2871cee94b3..bc4274ca903 100644 --- a/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx +++ b/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx @@ -30,7 +30,7 @@ To use `DBMS_JOB`, 1. Set the GUC parameter and the shared libraries parameter in `postgresql.conf` file: ```ini - edb_job_scheduler.database_list = 'edb,regression,ds_db' + edb_job_scheduler.database_list = 'edb' shared_preload_libraries='$libdir/edb_job_scheduler' ``` @@ -99,6 +99,8 @@ To configure the job scheduler, use these GUCs: - `edb_job_scheduler.max_jobs_per_database` — Controls the maximum number of jobs per database level. - `edb_job_scheduler.max_workers_per_database` — Controls the maximum number of worker processes per database level. +Reload the configuration with `pg_reload_conf()` or `pg_clt reload` to apply your changes. + The extension offers these user API functions: - `sys.reload_all_jobs` — Reloads all the unscheduled jobs from the current database. diff --git a/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/15_dbms_scheduler/index.mdx b/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/15_dbms_scheduler/index.mdx index d295200aa40..4699446d19d 100644 --- a/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/15_dbms_scheduler/index.mdx +++ b/product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/15_dbms_scheduler/index.mdx @@ -38,7 +38,7 @@ To use `DBMS_SCHEDULER`, 1. Set the GUC parameter and the shared libraries parameter in `postgresql.conf` file: ```ini - edb_job_scheduler.database_list = 'edb,regression,ds_db' + edb_job_scheduler.database_list = 'edb' shared_preload_libraries='$libdir/edb_job_scheduler' ``` @@ -93,6 +93,8 @@ To configure the job scheduler, use these GUCs: - `edb_job_scheduler.max_jobs_per_database` — Controls the maximum number of jobs per database level. - `edb_job_scheduler.max_workers_per_database` — Controls the maximum number of worker processes per database level. +Reload the configuration with `pg_reload_conf()` or `pg_clt reload` to apply your changes. + The extension offers these user API functions: - `sys.reload_all_jobs` — Reloads all the unscheduled jobs from the current database.