RUN_JOB v18
Use the RUN_JOB procedure to execute a job immediately. The signature of the RUN_JOB procedure is:
RUN_JOB( <job_name> IN VARCHAR2, <use_current_session> IN BOOLEAN DEFAULT TRUE
Parameters
job_name
job_name specifies the name of the job to execute.
use_current_session
By default, the job executes in the current session. If specified, use_current_session must be set to TRUE. If use_current_session is set to FALSE, EDB Postgres Advanced Server returns an error.
Example
The following call to RUN_JOB executes a job named update_log:
DBMS_SCHEDULER.RUN_JOB('update_log', TRUE);
Passing a value of TRUE as the second argument instructs the server to invoke the job in the current session.
- On this page
- Parameters
- Example