Skip to content

Commit bd3388f

Browse files
authored
Merge pull request EnterpriseDB#1865 from EnterpriseDB/bugfix/epas/DF-262-dbms-job-extension-update
DF-262 DBMS_JOB Extension update
2 parents d1388a9 + b1b1caf commit bd3388f

File tree

3 files changed

+9
-12
lines changed
  • product_docs/docs/epas
    • 11/epas_compat_bip_guide/03_built-in_packages/05_dbms_job
    • 12/epas_compat_bip_guide/03_built-in_packages/05_dbms_job
    • 13/epas_compat_bip_guide/03_built-in_packages/05_dbms_job

3 files changed

+9
-12
lines changed

product_docs/docs/epas/11/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `DBMS_JOB` package provides for the creation, scheduling, and managing of jo
1010

1111
This package relies on the `pgAgent` scheduler. By default, the Advanced Server installer installs `pgAgent`, but you must start the `pgAgent` service manually prior to using `DBMS_JOB`. If you attempt to use this package to schedule a job after un-installing `pgAgent, DBMS_JOB` will throw an error. `DBMS_JOB` verifies that `pgAgent` is installed, but does not verify that the service is running.
1212

13-
The following table lists the supported `DBMS_JOB` procedures:
13+
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. The following table lists the supported `DBMS_JOB` procedures:
1414

1515
| Function/Procedure | Return Type | Description |
1616
| ---------------------------------------------------------------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -23,12 +23,11 @@ The following table lists the supported `DBMS_JOB` procedures:
2323
| `SUBMIT(job OUT, what [, next_date [, interval [, no_parse ]]])` | n/a | Creates a job and stores its definition in the database. |
2424
| `WHAT(job, what)` | n/a | Change the stored procedure run by a job. |
2525

26-
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. Only those functions and procedures listed in the table above are supported.
27-
28-
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` extension. Use the `psql` client to connect to a database and invoke the command:
26+
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` and `DBMS_JOB` extension. Use the `psql` client to connect to a database and invoke the command:
2927

3028
```text
3129
CREATE EXTENSION pgagent;
30+
CREATE EXTENSION dbms_job;
3231
```
3332

3433
When and how often a job is run is dependent upon two interacting parameters – `next_date` and `interval`. The `next_date` parameter is a date/time value that specifies the next date/time when the job is to be executed. The `interval` parameter is a string that contains a date function that evaluates to a date/time value.

product_docs/docs/epas/12/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `DBMS_JOB` package provides for the creation, scheduling, and managing of jo
1010

1111
This package relies on the `pgAgent` scheduler. By default, the Advanced Server installer installs `pgAgent`, but you must start the `pgAgent` service manually prior to using `DBMS_JOB`. If you attempt to use this package to schedule a job after un-installing `pgAgent, DBMS_JOB` will throw an error. `DBMS_JOB` verifies that `pgAgent` is installed, but does not verify that the service is running.
1212

13-
The following table lists the supported `DBMS_JOB` procedures:
13+
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. The following table lists the supported `DBMS_JOB` procedures:
1414

1515
| Function/Procedure | Return Type | Description |
1616
| ---------------------------------------------------------------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -23,12 +23,11 @@ The following table lists the supported `DBMS_JOB` procedures:
2323
| `SUBMIT(job OUT, what [, next_date [, interval [, no_parse ]]])` | n/a | Creates a job and stores its definition in the database. |
2424
| `WHAT(job, what)` | n/a | Change the stored procedure run by a job. |
2525

26-
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. Only those functions and procedures listed in the table above are supported.
27-
28-
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` extension. Use the `psql` client to connect to a database and invoke the command:
26+
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` and `DBMS_JOB` extension. Use the `psql` client to connect to a database and invoke the command:
2927

3028
```text
3129
CREATE EXTENSION pgagent;
30+
CREATE EXTENSION dbms_job;
3231
```
3332

3433
When and how often a job is run is dependent upon two interacting parameters – `next_date` and `interval`. The `next_date` parameter is a date/time value that specifies the next date/time when the job is to be executed. The `interval` parameter is a string that contains a date function that evaluates to a date/time value.

product_docs/docs/epas/13/epas_compat_bip_guide/03_built-in_packages/05_dbms_job/index.mdx

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `DBMS_JOB` package provides for the creation, scheduling, and managing of jo
1010

1111
This package relies on the `pgAgent` scheduler. By default, the Advanced Server installer installs `pgAgent`, but you must start the `pgAgent` service manually prior to using `DBMS_JOB`. If you attempt to use this package to schedule a job after un-installing `pgAgent, DBMS_JOB` will throw an error. `DBMS_JOB` verifies that `pgAgent` is installed, but does not verify that the service is running.
1212

13-
The following table lists the supported `DBMS_JOB` procedures:
13+
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. The following table lists the supported `DBMS_JOB` procedures:
1414

1515
| Function/Procedure | Return Type | Description |
1616
| ---------------------------------------------------------------- | ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -23,12 +23,11 @@ The following table lists the supported `DBMS_JOB` procedures:
2323
| `SUBMIT(job OUT, what [, next_date [, interval [, no_parse ]]])` | n/a | Creates a job and stores its definition in the database. |
2424
| `WHAT(job, what)` | n/a | Change the stored procedure run by a job. |
2525

26-
Advanced Server's implementation of `DBMS_JOB` is a partial implementation when compared to Oracle's version. Only those functions and procedures listed in the table above are supported.
27-
28-
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` extension. Use the `psql` client to connect to a database and invoke the command:
26+
Before using `DBMS_JOB`, a database superuser must create the `pgAgent` and `DBMS_JOB` extension. Use the `psql` client to connect to a database and invoke the command:
2927

3028
```text
3129
CREATE EXTENSION pgagent;
30+
CREATE EXTENSION dbms_job;
3231
```
3332

3433
When and how often a job is run is dependent upon two interacting parameters – `next_date` and `interval`. The `next_date` parameter is a date/time value that specifies the next date/time when the job is to be executed. The `interval` parameter is a string that contains a date function that evaluates to a date/time value.

0 commit comments

Comments
 (0)