3.14 Redacting Multiple Columns
You can redact more than one column in a Data Redaction policy.
3.14.1 Adding Columns to a Data Redaction Policy for a Single Table or View
You can redact columns of different data types, using different redaction types and named policy expressions, for one table or view.
Related Topics
3.14.2 Example: Redacting Multiple Columns
The DBMS_REDACT.ALTER_POLICY
procedure can redact multiple columns.
Example 3-12 shows how to add a column to an existing Data Redaction policy. In this example, the action
parameter specifies that a new column must be added, using DBMS_REDACT.ADD_COLUMN
. The name of the new column, card_num
, is set by the column_name
parameter.
Example 3-12 Adding a Column to a Data Redaction Policy
BEGIN DBMS_REDACT.ALTER_POLICY( object_schema => 'mavis', object_name => 'cust_info', policy_name => 'redact_cust_user_ids', action => DBMS_REDACT.ADD_COLUMN, column_name => 'card_num', function_type => DBMS_REDACT.FULL); END; /