3.3 General Syntax of the DBMS_REDACT.ADD_POLICY Procedure
To create a Data Redaction policy, you must use the DBMS_REDACT.ADD_POLICY
procedure.
The complete syntax for the DBMS_REDACT.ADD_POLICY
procedure is as follows:
DBMS_REDACT.ADD_POLICY ( object_schema IN VARCHAR2 := NULL, object_name IN VARCHAR2, policy_name IN VARCHAR2, policy_description IN VARCHAR2 := NULL, column_name IN VARCHAR2 := NULL, column_description IN VARCHAR2 := NULL, function_type IN BINARY_INTEGER := DBMS_REDACT.FULL, function_parameters IN VARCHAR2 := NULL, expression IN VARCHAR2, enable IN BOOLEAN := TRUE, regexp_pattern IN VARCHAR2 := NULL, regexp_replace_string IN VARCHAR2 := NULL, regexp_position IN BINARY_INTEGER :=1, regexp_occurrence IN BINARY_INTEGER :=0, regexp_match_parameter IN VARCHAR2 := NULL);
In this specification:
Table 3-2 DBMS_REDACT.ADD_POLICY
Parameters
Parameter | Description |
---|---|
object_schema |
Specifies the schema of the object on which the Data Redaction policy will
be applied. If you omit this setting (or enter NULL ), then Oracle Database
uses the current user's name. Be aware that the meaning of "current user" here can change,
depending on where you invoke the DBMS_REDACT.ADD_POLICY procedure.
For example, suppose user When |
object_name |
Required Specifies the name of the table or view to which the Data Redaction policy applies. |
policy_name |
Required Specifies the name of the policy to be
created. Ensure that this name is unique in the database instance. You can find a list of
existing Data Redaction policies by querying the |
expression |
Required Specifies a Boolean SQL expression to determine when the policy is applied.
Redaction takes place only if this policy expression evaluates to By default, a Data Redaction policy expression applies to all the columns that belong to the Data Redaction policy defined on that table or view. Alternatively, you can choose to create and associate a policy expression for individual columns to override the existing expression. These column level expressions are called named policy expressions. See Creating and Managing Multiple Named Policy Expressions. |
policy_description |
Specifies a brief description of the purpose of the policy. |
column_name |
Specifies the column whose data you want to redact. Note the following:
|
column_description |
Specifies a brief description of the purpose of the policy. |
function_type |
Specifies a function that sets the type of redaction. Can be specified only
when If you omit the See the following sections for more information: |
function_parameters |
Specifies how the column redaction should appear for partial redaction.
Required if function_type is DBMS_REDACT.PARTIAL . See
Syntax for Creating a Partial Redaction Policy.
|
enable |
When set to |
regexp_pattern |
Enable you to use regular expressions to redact data, either fully or
partially. If the regexp_pattern does not match anything in the actual
data, then full redaction will take place, so be careful when specifying the
regexp_pattern . Ensure that all of the values in the column conform to the
semantics of the regular expression you are using. See Syntax for Creating a Regular Expression-Based Redaction Policy for more
information.
|
regexp_replace_string |
Specifies how you want to replace the data to be redacted. This data can
be of any of the data types CHAR , VARCHAR2 ,
NCHAR , or NVARCHAR2 . The
regexp_replace_string can contain up to 500 back references to
subexpressions in the form \n , where n is a number from one to nine. If you
want to include a backslash (\ ) in the
regexp_replace_string setting, then you must precede it with the escape
character, which is also a backslash.
For example, to literally replace the matched
pattern with For more information, see Oracle Database SQL Language Reference. |
regexp_position |
Specifies the starting position for the string search. The value that you
enter must be a positive integer indicating the character of the
column_name data where Oracle Database should begin the search. The
default is 1 or the DBMS_REDACT.RE_BEGINNING format, meaning that Oracle
Database begins the search at the first character of the column_name
data.
|
regexp_occurrence |
Specifies how to perform the search and replace operation. The value that
you enter must be a non-negative integer indicating the occurrence of the replace operation.
If you specify If you specify the
If you specify a positive integer |
regexp_match_parameter |
Specifies a text literal that lets you change the default matching
behavior of the function. The behavior of this parameter is the same for this function as
for the REGEXP_REPLACE SQL function. To filter the search so that it is not
case sensitive, specify the RE_CASE_INSENSITIVE format.
See Oracle Database SQL Language Reference for detailed information. |
To find information about redaction policies, you can query the REDACTION_POLICIES
data dictionary view.