Home > APEX_PLSQL_JOB > JOBS_ARE_ENAB...
Previous |
Next |
Call this function to determine whether or not the database is currently in a mode that supports submitting jobs to the APEX_PLSQL_JOB package.
Syntax
APEX_PLSQL_JOB.JOBS_ARE_ENABLED RETURN BOOLEAN;
Parameters
None.
Example
The following example shows how to use the JOBS_ARE_ENABLED
function. In the example, if the function returns TRUE
the message 'Jobs are enabled on this database instance' is displayed, otherwise the message 'Jobs are not enabled on this database instance' is displayed.
BEGIN IF APEX_PLSQL_JOB.JOBS_ARE_ENABLED THEN HTP.P('Jobs are enabled on this database instance.'); ELSE HTP.P('Jobs are not enabled on this database instance.'); END IF; END;