ENABLE v17
Use the ENABLE
procedure to enable a disabled program or job.
The signature of the ENABLE
procedure is:
ENABLE( <name> IN VARCHAR2, <commit_semantics> IN VARCHAR2 DEFAULT 'STOP_ON_FIRST_ERROR')
Parameters
name
name
specifies the name of the program or job that's being enabled.
commit_semantics
commit_semantics
tells the server how to handle an error encountered while enabling a program or job. By default, commit_semantics
is set to STOP_ON_FIRST_ERROR
, tellin the server to stop when it encounters an error.
The TRANSACTIONAL
and ABSORB_ERRORS
keywords are accepted for compatibility and ignored.
Example
The following call to DBMS_SCHEDULER.ENABLE
enables the update_emp
program:
DBMS_SCHEDULER.ENABLE('update_emp');
- On this page
- Parameters
- Example