3.3 Oracle SQL Firewall and Oracle Scheduler Jobs
In most scenarios, you may want to exclude Oracle Scheduler jobs from Oracle SQL Firewall enforcement because these are not typically run by users.
By default the Oracle Scheduler jobs are excluded. You can enable or disable the enforcement of SQL Firewall during Oracle Scheduler operations by setting the FEATURE
parameter to the DBMS_SQL_FIREWALL.SCHEDULER_JOB
constant, using the following procedures:
DBMS_SQL_FIREWALL.INCLUDE
permits SQL Firewall to capture any SQL or enforce any allow-lists during Oracle Scheduler operations.DBMS_SQL_FIREWALL.EXCLUDE
prevents SQL Firewall from capturing any SQL or enforcing any allow-lists during Oracle Scheduler operations.
For example:
EXEC DBMS_SQL_FIREWALL.EXCLUDE (DBMS_SQL_FIREWALL.SCHEDULER_JOB);