16 Oracle Database Vault Command Rule APIs
The DBMS_MACADM
PL/SQL package provides procedures for configuring command rules. .
Only users who have been granted the DV_OWNER
or DV_ADMIN
role can use these procedures.
- CREATE_COMMAND_RULE Procedure
TheCREATE_COMMAND_RULE
procedure creates a command rule and associates it with a rule set. - CREATE_CONNECT_COMMAND_RULE Procedure
TheCREATE_CONNECT_COMMAND_RULE
procedure creates a CONNECT command rule that you can associate with a user and a rule set. - CREATE_SESSION_EVENT_CMD_RULE Procedure
TheCREATE_SESSION_EVENT_CMD_RULE
procedure creates a command rule that you can associate with session events, based on theALTER SESSION
statement. - CREATE_SYSTEM_EVENT_CMD_RULE Procedure
TheCREATE_SYSTEM_EVENT_CMD_RULE
procedure creates a command rule that you can associate with system events, based on theALTER SYSTEM
statement. - DELETE_COMMAND_RULE Procedure
TheDELETE_COMMAND_RULE
procedure drops a command rule declaration. - DELETE_CONNECT_COMMAND_RULE Procedure
TheDELETE_CONNECT_COMMAND_RULE
procedure deletes a CONNECT command rule that had been created with theCREATE_CONNECT_COMMAND_RULE
procedure. - DELETE_SESSION_EVENT_CMD_RULE Procedure
TheDELETE_SESSION_EVENT_CMD_RULE
procedure deletes a session command rule that was associated with events. - DELETE_SYSTEM_EVENT_CMD_RULE Procedure
TheDELETE_SYSTEM_EVENT_CMD_RULE
procedure deletes a system command rule that was associated with events. - UPDATE_COMMAND_RULE Procedure
TheUPDATE_COMMAND_RULE
procedure updates a command rule declaration. - UPDATE_CONNECT_COMMAND_RULE Procedure
TheUPDATE_CONNECT_COMMAND_RULE
procedure updates a CONNECT command rule that had been created with theCREATE_CONNECT_COMMAND_RULE
procedure. - UPDATE_SESSION_EVENT_CMD_RULE Procedure
TheUPDATE_SESSION_EVENT_CMD_RULE
procedure updates a session event command rule, based on theALTER SESSION
statement. - UPDATE_SYSTEM_EVENT_CMD_RULE Procedure
TheUPDATE_SYSTEM_EVENT_CMD_RULE
procedure updates a system event command rule, based on theALTER SYSTEM
statement.
Related Topics
CREATE_COMMAND_RULE Procedure
The CREATE_COMMAND_RULE
procedure creates a command rule and associates it with a rule set.
Optionally, you can use it to enable the command rule for rule checking with a rule set. In a multitenant environment, you can create both common and local command rules.
Syntax
DBMS_MACADM.CREATE_COMMAND_RULE( command IN VARCHAR2, rule_set_name IN VARCHAR2, object_owner IN VARCHAR2, object_name IN VARCHAR2, enabled IN VARCHAR2, privilege_scope IN NUMBER, clause_name IN VARCHAR2, parameter_name IN VARCHAR2, event_name IN VARCHAR2, component_name IN VARCHAR2, action_name IN VARCHAR2, scope IN NUMBER DEFAULT);
Parameters
Table 16-1 CREATE_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
SQL statement to protect. See also the following:
|
|
Name of rule set to associate with this command rule. To find existing rule sets in the current database instance, query the |
|
Database schema to which this command rule will apply. The wildcard DBA_USERS view, described in Oracle Database Reference.
See also "Object Owner" in Creating a Command Rule for more information. |
|
Object to be protected by the command rule. (The wildcard % is allowed. See "Object Name" in Creating a Command Rule for more information about objects protected by command rules.) To find the available objects, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
Obsolete parameter |
|
A clause from the SQL statement that was used to create the command rule. For example, a command rule for the Applies only to command rules for |
|
A parameter from the Applies only to command rules for |
|
An event that the command rule defines. For example, suppose an Applies only to |
|
A component of the Applies only to |
|
An action of the Applies only to |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you create the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
ALTER SYSTEM Command Rule Settings
Table 16-2 describes the ALTER SYSTEM
command rule settings.
Table 16-2 ALTER SYSTEM Command Rule Settings
clause_name | parameter_name — Parameter Value |
---|---|
|
|
|
N/A — |
|
N/A — |
|
N/A — N/A |
|
N/A — |
|
|
|
|
|
|
|
|
|
|
|
N/A — N/A |
|
|
|
N/A — N/A |
|
|
|
|
|
N/A — |
|
N/A — |
|
N/A — N/A |
|
N/A — |
ALTER SESSION Command Rule Settings
Table 16-3 describes the ALTER SESSION
command rule settings.
Table 16-3 ALTER SESSION Command Rule Settings
clause_name | parameter_name — Parameter Value |
---|---|
|
N/A — |
|
N/A — |
|
N/A — |
|
N/A — |
|
|
|
N/A — N/A |
|
N/A — |
|
N/A — |
|
N/A — |
|
N/A — |
|
N/A — N/A |
|
|
Examples
Simple Command Rules
The following example shows how to create a simple command rule for the SELECT
statement on the OE.ORDERS
table. This command rule uses no command rules.
BEGIN DBMS_MACADM.CREATE_COMMAND_RULE( command => 'SELECT', rule_set_name => 'Check User Role', object_owner => 'OE', object_name => 'ORDERS', enabled => DBMS_MACUTL.G_YES); END; /
This example shows how to create a command rule that checks if users can enable or disable the hr_audit_pol
unified audit policy. Note that if the object is a unified audit policy, then you must have AUDIT POLICY
, not just AUDIT
, for the command
parameter.
BEGIN DBMS_MACADM.CREATE_COMMAND_RULE( command => 'AUDIT POLICY', rule_set_name => 'Check ability to audit', object_owner => '%', object_name => 'hr_audit_pol', enabled => DBMS_MACUTL.G_YES, scope => DBMS_MACUTL.G.SCOPE_LOCAL); END; /
ALTER SESSION Command Rule Using the SET Clause
The following example shows how to create an ALTER SESSION
command rule that uses the SET
clause with the ERROR_ON_OVERLAP_TIME
parameter.
BEGIN DBMS_MACADM.CREATE_COMMAND_RULE( command => 'ALTER SESSION', rule_set_name => 'Test ERROR_ON_OVERLAP_TIME for FALSE', object_owner => '%', object_name => '%', enabled => DBMS_MACUTL.G_YES, clause_name => 'SET', parameter_name => 'ERROR_ON_OVERLAP_TIME', scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
In this example:
-
rule_set_name
: TheALTER SESSION
SQL statementERROR_ON_OVERLAP_TIME
session parameter must be set to eitherTRUE
orFALSE
. You can create a rule set that checks if this setting. For example, for the rule:EXEC DBMS_MACADM.CREATE_RULE('RULE_TRUE', 'UPPER(PARAMETER_VALUE) = ''TRUE''');
The rule set that is used with this rule can be similar to the following:
BEGIN DBMS_MACADM.CREATE_RULE_SET( rule_set_name => 'Test ERROR_ON_OVERLAP_TIME', description => 'Checks if the ERROR_ON_OVERLAP_TIME setting is TRUE or FALSE', enabled => DBMS_MACUTL.G_YES, eval_options => DBMS_MACUTL.G_RULESET_EVAL_ALL, audit_options => DBMS_MACUTL.G_RULESET_AUDIT_FAIL + DBMS_MACUTL.G_RULESET_AUDIT_SUCCESS, fail_options => DBMS_MACUTL.G_RULESET_FAIL_SILENT, fail_message => 'false error on overlaptime', fail_code => 20461, handler_options => DBMS_MACUTL.G_RULESET_HANDLER_FAIL, handler => '', is_static => false); END; / EXEC DBMS_MACADM.ADD_RULE_TO_RULE_SET('Test ERROR_ON_OVERLAP_TIME', 'RULE_TRUE');
-
object_owner
andobject_name
must be set to%
forALTER SESSION
andALTER SYSTEM
command rules. -
enabled
uses theDBMS_MACUTL.G_YES
constant to enable the command rule when it is created. -
clause_name
sets theALTER SESSION
command rule to use theSET
clause of theALTER SESSION
PL/SQL statement. -
parameter_name
is set to theERROR_ON_OVERLAP_TIME
parameter of theSET
clause. -
scope
uses theDBMS_MACUTL.G_SCOPE_COMMON
constant to set the command rule to be a common command rule. This command rule will be in the application root of a multitenant environment, so the user running this procedure must be in the CDB root. Any rules or rule sets that are associated with this command rule must be common.If you were creating the command rule locally, you would set
scope
toDBMS_MACUTL.G_SCOPE_LOCAL
. In that case, the user who runs this procedure must be in the PDB in which the command rule will reside. To find the existing PDBs, you can query theDBA_PDBS
data dictionary view. Any rules or rule sets that are associated with this command rule must be local.
ALTER SYSTEM Command Rule Using the CHECKPOINT Clause
This example shows how to create an ALTER SYSTEM command rule that users the CHECKPOINT
clause. To have the command rule test for the CHECKPOINT
setting, you must create a rule set and rule, similar to the ALTER SESSION command rule in the previous example. In this example, the parameter
setting is not specified because the CHECKPOINT
setting does not have parameters.
BEGIN DBMS_MACADM.CREATE_COMMAND_RULE( command => 'ALTER SYSTEM', rule_set_name => 'Test CHECKPOINT Setting', object_owner => '%', object_name => '%', enabled => DBMS_MACUTL.G_YES, clause_name => 'CHECKPOINT', parameter_name => '', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
ALTER SESSION Command Rule Using the SET Clause
The following ALTER SESSION command rule uses the SET
clause to specify an event_name
and component_name
. You can only use the event_name
, component_name
, and action_name
parameters if the clause_name
parameter specifies SET
.
BEGIN DBMS_MACADM.CREATE_COMMAND_RULE( command => 'ALTER SESSION', rule_set_name => 'Check Trace Events', object_owner => '%', object_name => '%', enabled => DBMS_MACUTL.G_YES, clause_name => 'SET', parameter_name => 'EVENTS', event_name => 'TRACE', component_name => 'GCS', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
See also ALTER SESSION and ALTER SYSTEM Command Rules for conceptual information about this topic.
Parent topic: Oracle Database Vault Command Rule APIs
CREATE_CONNECT_COMMAND_RULE Procedure
The CREATE_CONNECT_COMMAND_RULE
procedure creates a CONNECT command rule that you can associate with a user and a rule set.
In a multitenant environment, you can create both common and local command rules.
Syntax
DBMS_MACADM.CREATE_CONNECT_COMMAND_RULE( user_name IN VARCHAR2, rule_set_name IN VARCHAR2, enabled IN VARCHAR2, scope IN NUMBER DEFAULT);
Parameters
Table 16-4 CREATE_CONNECT_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
User to whom the CONNECT command rule will apply. If you enter the In a multitenant environment, if you execute this procedure in the root, then specifying In a multitenant environment, ensure that this user is common if the CONNECT command rule is common, and local or common if the CONNECT command rule is local. To find existing database users in the current instance, query the |
|
Name of rule set to associate with this command rule. In a multitenant environment, ensure that this rule set is common if the CONNECT command rule is common, and local if the CONNECT command rule is local. To find existing rule sets in the current database instance, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you create the common CONNECT command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
Examples
The following example shows how to create a common CONNECT command rule in a multitenant environment. This command rule will be in the CDB root, so the user who runs this procedure must be in the CDB root. Any user names or rule sets that are associated with this command rule must be common.
BEGIN DBMS_MACADM.CREATE_CONNECT_COMMAND_RULE( rule_set_name => 'Allow Sessions', user_name => 'C##HR_ADMIN', enabled => DBMS_MACUTL.G_SIMULATION, scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
This example is a local version of the preceding example. The user who runs this procedure must be in the PDB in which the local CONNECT command rule will reside. To find the available PDBs, run the show pdbs
command. Any rule sets that are associated with this command rule must be local. The user can be either common or local.
BEGIN DBMS_MACADM.CREATE_CONNECT_COMMAND_RULE( rule_set_name => 'Allow Sessions', user_name => 'PSMITH', enabled => DBMS_MACUTL.G_SIMULATION, scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
Parent topic: Oracle Database Vault Command Rule APIs
CREATE_SESSION_EVENT_CMD_RULE Procedure
The CREATE_SESSION_EVENT_CMD_RULE
procedure creates a command rule that you can associate with session events, based on the ALTER SESSION
statement.
In a multitenant environment, you can create both session event common and local command rules.
Syntax
DBMS_MACADM.CREATE_SESSION_EVENT_CMD_RULE( rule_set_name IN VARCHAR2, enabled IN VARCHAR2, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT, pl_sql_stack IN BOOLEAN DEFAULT);
Parameters
Table 16-5 CREATE_SESSION_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
Name of the rule set to associate with the command rule. In a multitenant environment, ensure that this rule set is common if the session event command rule is common, and local if the command rule is local. To find existing rule sets in the current database instance, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
An event that the command rule defines. This setting enables the command rule to correspond with an |
|
A component of the You can find valid component names by issuing |
|
An action of the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you create the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
|
When simulation mode is enabled, specifies whether to record the PL/SQL stack for failed operations. Enter |
Examples
The following example shows how to create a common session event command rule in a multitenant environment. This command rule will be in the application root, so the user running this procedure must be in the CDB root. Any user names or rule sets that are associated with this command rule must be common.
BEGIN DBMS_MACADM.CREATE_SESSION_EVENT_CMD_RULE( rule_set_name => 'Allow Sessions', event_name => 'TRACE', component_name => 'DV', action_name => 'CURSORTRACE', enabled => DBMS_MACUTL.G_SIMULATION, scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
This example shows how to create a session event for the 47998 trace event. This example will records the PL/SQL stack for failed operations.
BEGIN DBMS_MACADM.CREATE_SESSION_EVENT_CMD_RULE( rule_set_name => 'Allow Sessions', event_name => '47998', enabled => 'y', scope => DBMS_MACUTL.G_SCOPE_LOCAL, pl_sql_stack => TRUE); END; /
Parent topic: Oracle Database Vault Command Rule APIs
CREATE_SYSTEM_EVENT_CMD_RULE Procedure
The CREATE_SYSTEM_EVENT_CMD_RULE
procedure creates a command rule that you can associate with system events, based on the ALTER SYSTEM
statement.
In a multitenant environment, you can create both ALTER SYSTEM common and local command rules.
Syntax
DBMS_MACADM.CREATE_SYSTEM_EVENT_CMD_RULE( rule_set_name IN VARCHAR2, enabled IN VARCHAR2, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT pl_sql_stack IN BOOLEAN DEFAULT);
Parameters
Table 16-6 CREATE_SYSTEM_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
Name of the rule set to associate with the command rule. In a multitenant environment, ensure that this rule set is common if the system event command rule is common, and local if the command rule is local. To find existing rule sets in the current database instance, query the |
|
An event that the command rule defines. This setting enables the command rule to correspond to an |
|
A component of the You can find valid component names by issuing |
|
An action of the |
|
Specify one of the following options to set the status of the command rule:
|
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you create the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
|
When simulation mode is enabled, specifies whether to record the PL/SQL stack for failed operations. Enter |
Example
The following example shows how to create a common system event command rule in a multitenant environment. This command rule will be in the application root, so the user running this procedure must be in the CDB root. Any user names or rule sets that are associated with this command rule must be common.
BEGIN DBMS_MACADM.CREATE_SYSTEM_EVENT_CMD_RULE( rule_set_name => 'Enabled', event_name => 'TRACE', component_name => 'GSIPC', action_name => 'HEAPDUMP', enabled => DBMS_MACUTL.G_YES, scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
Parent topic: Oracle Database Vault Command Rule APIs
DELETE_COMMAND_RULE Procedure
The DELETE_COMMAND_RULE
procedure drops a command rule declaration.
Syntax
DBMS_MACADM.DELETE_COMMAND_RULE( command IN VARCHAR2, object_owner IN VARCHAR2, object_name IN VARCHAR2, clause_name IN VARCHAR2, parameter_name IN VARCHAR2 DEFAULT, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT);
Parameters
Table 16-7 DELETE_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
SQL statement the command rule protects. To find available command rules, query the |
|
Database schema to which this command rule applies. To find the available users in the current database instance, query the |
|
Object name. The wildcard To find the available objects in the current database instance, query the |
|
A clause from the SQL statement that was used to create the command rule. Applies only to command rules for |
|
A parameter from the Applies only to command rules for |
|
An event that the command rule defines. Applies only to command rules for |
|
A component of the Applies only to command rules for |
|
An action of the Applies only to command rules for |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
|
Example
The following example shows how to delete an ALTER SESSION command rule. When you specify the parameters, ensure that they match exactly the parameters that were used the last time the command rule was updated. To find the current settings of the command rule, query the DBA_DV_COMMAND_RULE
view, described in DBA_DV_COMMAND_RULE View.
BEGIN DBMS_MACADM.DELETE_COMMAND_RULE( command => 'ALTER SESSION', object_owner => '%', object_name => '%', clause_name => 'SET', parameter_name => 'EVENTS', event_name => 'TRACE', component_name => 'GCS', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
This example shows how to delete a SELECT command rule.
BEGIN DBMS_MACADM.DELETE_COMMAND_RULE( command => 'SELECT', object_owner => 'HR', object_name => 'EMPLOYEES', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
Parent topic: Oracle Database Vault Command Rule APIs
DELETE_CONNECT_COMMAND_RULE Procedure
The DELETE_CONNECT_COMMAND_RULE
procedure deletes a CONNECT command rule that had been created with the CREATE_CONNECT_COMMAND_RULE
procedure.
Syntax
DBMS_MACADM.DELETE_CONNECT_COMMAND_RULE( user_name IN VARCHAR2, scope IN NUMBER DEFAULT);
Parameters
Table 16-8 DELETE_CONNECT_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
User to whom the CONNECT command rule applied. To find this user, query the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
|
Example
BEGIN DBMS_MACADM.DELETE_CONNECT_COMMAND_RULE( user_name => 'PSMITH', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
Parent topic: Oracle Database Vault Command Rule APIs
DELETE_SESSION_EVENT_CMD_RULE Procedure
The DELETE_SESSION_EVENT_CMD_RULE
procedure deletes a session command rule that was associated with events.
Syntax
DBMS_MACADM.DELETE_SESSION_EVENT_CMD_RULE( event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT);
Parameters
Table 16-9 DELETE_SESSION_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
An event that the session event command rule defines. DBA_DV_COMMAND_RULE View for a information about existing command rules |
|
A component of the |
|
An action of the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
|
Example
The following example shows how to delete a common session event command rule in the application root a multitenant environment. The user running this procedure must be a common user in the CDB root. When you specify the parameters, ensure that they match exactly the parameters that were used the last time the command rule was updated. To find the current settings of the command rule, query the DBA_DV_COMMAND_RULE
view, described in DBA_DV_COMMAND_RULE View
BEGIN DBMS_MACADM.DELETE_SESSION_EVENT_CMD_RULE( event_name => '47999', scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
Parent topic: Oracle Database Vault Command Rule APIs
DELETE_SYSTEM_EVENT_CMD_RULE Procedure
The DELETE_SYSTEM_EVENT_CMD_RULE
procedure deletes a system command rule that was associated with events.
Syntax
DBMS_MACADM.DELETE_SYSTEM_EVENT_CMD_RULE( event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT);
Parameters
Table 16-10 DELETE_SYSTEM_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
An event that the system event command rule defines. See DBA_DV_COMMAND_RULE View for a information about existing command rules. |
|
A component of the |
|
An action of the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
|
Examples
The following example shows how to delete a common system event command rule in the application root of a multitenant environment. The user running this procedure must be a common user in the CDB root. When you specify the parameters, ensure that they match exactly the parameters that were used the last time the command rule was updated. To find the current settings of the command rule, query the DBA_DV_COMMAND_RULE
view, described in DBA_DV_COMMAND_RULE View
BEGIN DBMS_MACADM.DELETE_SYSTEM_EVENT_CMD_RULE( event_name => 'TRACE', component_name => 'DV', action_name => '', scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
Parent topic: Oracle Database Vault Command Rule APIs
UPDATE_COMMAND_RULE Procedure
The UPDATE_COMMAND_RULE
procedure updates a command rule declaration.
In a multitenant environment, you can update both common and local command rules.
Syntax
DBMS_MACADM.UPDATE_COMMAND_RULE( command IN VARCHAR2, rule_set_name IN VARCHAR2, object_owner IN VARCHAR2, object_name IN VARCHAR2, enabled IN VARCHAR2, privilege_scope IN NUMBER, clause_name IN VARCHAR2, parameter_name IN VARCHAR2 DEFAULT, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT, pl_sql_stack IN BOOLEAN DEFAULT);
Parameters
Table 16-11 UPDATE_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
Command rule to update See also the following:
|
|
Name of rule set to associate with this command rule. To find existing rule sets in the current database instance, query the |
|
Database schema to which this command rule applies. To find the available users, query the |
|
Object name. (The wildcard % is allowed. See "Object Name" in Creating a Command Rule for more information about objects protected by command rules.) To find the available objects, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
Obsolete parameter |
|
A clause from the SQL statement that was used to create the command rule. For example, a command rule for the Applies only to command rules for |
|
A parameter from the Applies only to command rules for |
|
An event that the command rule defines. For example, for an Applies only to |
|
A component of the Applies only to |
|
An action of the Applies only to |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you update the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
|
When simulation mode is enabled, specifies whether to record the PL/SQL stack for failed operations. Enter |
Examples
The following example shows how to create a simple command rule that protects the HR.EMPLOYEES
schema.
BEGIN DBMS_MACADM.UPDATE_COMMAND_RULE( command => 'SELECT', rule_set_name => 'Enabled', object_owner => 'HR', object_name => 'EMPLOYEES', enabled => DBMS_MACUTL.G_SIMULATION, scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
This example shows how to update a more complex command rule, which is based on the ALTER SESSION
SQL statement.
BEGIN DBMS_MACADM.UPDATE_COMMAND_RULE( command => 'ALTER SESSION', rule_set_name => 'Enabled', object_owner => '%', object_name => '%', enabled => 's', clause_name => 'SET', parameter_name => 'EVENTS', event_name => 'TRACE', component_name => 'GCS', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
Parent topic: Oracle Database Vault Command Rule APIs
UPDATE_CONNECT_COMMAND_RULE Procedure
The UPDATE_CONNECT_COMMAND_RULE
procedure updates a CONNECT command rule that had been created with the CREATE_CONNECT_COMMAND_RULE
procedure.
Syntax
DBMS_MACADM.CREATE_UPDATE_CONNECT_COMMAND_RULE( user_name IN VARCHAR2, rule_set_name IN VARCHAR2, enabled IN VARCHAR2, scope IN NUMBER DEFAULT);
Parameters
Table 16-12 UPDATE_CONNECT_COMMAND_RULE Parameters
Parameter | Description |
---|---|
|
User to whom the CONNECT command rule will apply. If you enter the In a multitenant environment, if you execute this procedure in the root, then specifying In a multitenant environment, ensure that this user is common if the CONNECT command rule is common, and local or common if the CONNECT command rule is local. To find existing command rules, query the To find existing database users in the current instance, query the |
|
Name of rule set to associate with this command rule. In a multitenant environment, ensure that this rule set is common if the CONNECT command rule is common, and local if the CONNECT command rule is local. To find existing rule sets in the current database instance, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you update the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
Example
BEGIN DBMS_MACADM.UPDATE_CONNECT_COMMAND_RULE( rule_set_name => 'Allow Sessions', user_name => 'PSMITH', enabled => 'DBMS_MACUTL.G_YES', scope => DBMS_MACUTL.G_SCOPE_LOCAL); END; /
Parent topic: Oracle Database Vault Command Rule APIs
UPDATE_SESSION_EVENT_CMD_RULE Procedure
The UPDATE_SESSION_EVENT_CMD_RULE
procedure updates a session event command rule, based on the ALTER SESSION
statement.
In a multitenant environment, you can update both common and local session event command rules.
Syntax
DBMS_MACADM.UPDATE_SESSION_EVENT_CMD_RULE( rule_set_name IN VARCHAR2, enabled IN VARCHAR2, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT, pl_sql_stack IN BOOLEAN DEFAULT);
Parameters
Table 16-13 UPDATE_SESSION_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
Name of the rule set to associate with the command rule. In a multitenant environment, ensure that this rule set is common if the session event command rule is common, and local if the command rule is local. To find existing rule sets in the current database instance, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
An event that the command rule defines. This setting enables the command rule to correspond with an |
|
A component of the You can find valid component names by issuing |
|
An action of the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you update the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
|
When simulation mode is enabled, specifies whether to record the PL/SQL stack for failed operations. Enter |
Example
The following example shows how to update a common session event command rule in a multitenant environment. This command rule is in the application root, so the user running this procedure must be in the CDB root. Any user names or rule sets that are associated with this command rule must be common.
BEGIN DBMS_MACADM.UPDATE_SESSION_EVENT_CMD_RULE( rule_set_name => 'Allow Sessions', event_name => '47999', enabled => DBMS_MACUTL.G_NO, scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
Parent topic: Oracle Database Vault Command Rule APIs
UPDATE_SYSTEM_EVENT_CMD_RULE Procedure
The UPDATE_SYSTEM_EVENT_CMD_RULE
procedure updates a system event command rule, based on the ALTER SYSTEM
statement.
In a multitenant environment, you can update both common and local session event command rules.
Syntax
DBMS_MACADM.UPDATE_SYSTEM_EVENT_CMD_RULE( rule_set_name IN VARCHAR2, enabled IN VARCHAR2, event_name IN VARCHAR2 DEFAULT, component_name IN VARCHAR2 DEFAULT, action_name IN VARCHAR2 DEFAULT, scope IN NUMBER DEFAULT, pl_sql_stack IN BOOLEAN DEFAULT);
Parameters
Table 16-14 UPDATE_SYSTEM_EVENT_CMD_RULE Parameters
Parameter | Description |
---|---|
|
Name of the rule set to associate with the command rule. In a multitenant environment, ensure that this rule set is common if the system event command rule is common, and local if the command rule is local. To find existing rule sets in the current database instance, query the |
|
Specify one of the following options to set the status of the command rule:
|
|
An event that the command rule defines. This setting enables the command rule to correspond to an |
|
A component of the You can find valid component names by issuing |
|
An action of the |
|
For a multitenant environment, determines how to execute this procedure. The default is local. Options are as follows:
If you update the common command rule in an application root and want it visible to the associated PDBs, then you must synchronize the application. For example: ALTER PLUGGABLE DATABASE APPLICATION saas_sales_app SYNC; |
|
When simulation mode is enabled, specifies whether to record the PL/SQL stack for failed operations. Enter |
Example
The following example shows how to update a common system event command rule in a multitenant environment. This command rule is in the application root, so the user running this procedure must be in the CDB root. Any user names or rule sets that are associated with this command rule must be common.
BEGIN DBMS_MACADM.UPDATE_SYSTEM_EVENT_CMD_RULE( rule_set_name => 'Disabled', event_name => 'TRACE', component_name => 'DV', enabled => 'n', scope => DBMS_MACUTL.G_SCOPE_COMMON); END; /
Parent topic: Oracle Database Vault Command Rule APIs