3.15 Altering an Oracle Data Redaction Policy
The DBMS_REDACT.ALTER_POLICY
procedure enables you to modify Oracle Data Redaction policies.
3.15.1 About Altering Oracle Data Redaction Policies
The DBMS_REDACT.ALTER_POLICY
procedure alters a Data Redaction policy.
If the policy is already enabled, then you do not need to disable it first, and after you alter the policy, it remains enabled.
You can find the names of existing Data Redaction policies by querying the POLICY_NAME
column of the REDACTION_POLICIES
data dictionary view, and information about the columns, functions, and parameters specified in a policy by querying the REDACTION_COLUMNS
view. To find the current value for policies that use full data redaction, you can query the REDACTION_VALUES_FOR_TYPE_FULL
data dictionary view.
The action
parameter specifies the type of modification that you want to perform. At a minimum, you must include the object_name
and policy_name
parameters when you run this procedure.
3.15.2 Syntax for the DBMS_REDACT.ALTER_POLICY Procedure
The DBMS_REDACT.ALTER_POLICY
procedure syntax can be used to alter all types of Data Redaction policies.
The syntax for the DBMS_REDACT.ALTER_POLICY
procedure is as follows:
DBMS_REDACT.ALTER_POLICY (
object_schema IN VARCHAR2 := NULL,
object_name IN VARCHAR2,
policy_name IN VARCHAR2,
action IN BINARY_INTEGER := DBMS_REDACT.ADD_COLUMN,
column_name IN VARCHAR2 := NULL,
function_type IN BINARY_INTEGER := DBMS_REDACT.FULL,
function_parameters IN VARCHAR2 := NULL,
expression IN VARCHAR2 := NULL,
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,
policy_description IN VARCHAR2 := NULL,
column_description IN VARCHAR2 := NULL);
In this specification:
-
action
: Enter one of the following values to define the kind of action to use:-
DBMS_REDACT.ADD_COLUMN
if you plan to add a new column (in addition to columns that are already protected by the policy) for redaction. This setting is the default for theaction
parameter. -
DBMS_REDACT.MODIFY_COLUMN
if you plan to changefunction_parameters
,regexp_*
parameters, or the redaction type infunction_type
. -
DBMS_REDACT.DROP_COLUMN
if you want to remove redaction from a column. -
DBMS_REDACT.MODIFY_EXPRESSION
if you plan to change theexpression
value. Each policy can have only one policy expression. In other words, when you modify the policy expression, you are replacing the existing policy expression with a new policy expression.Each column in the table can have a different named policy expression. (You can create and manage multiple named policy expressions.) You can modify named policy expressions by using
DBMS_REDACT.UPDATE_POLICY_EXPRESSION
. You cannot modify named policy expressions by usingDBMS_REDACT.MODIFY_EXPRESSION
. -
DBMS_REDACT.SET_POLICY_DESCRIPTION
if you want to change the description of the policy. -
DBMS_REDACT.SET_COLUMN_DESCRIPTION
if you want to change the description of the column.
-
3.15.3 Parameters Required for DBMS_REDACT.ALTER_POLICY Actions
The DBMS_REDACT.ALTER_POLICY
procedure provides parameters than can perform various actions, such as adding or modifying a column.
Table 3-12 shows the combinations of these parameters.
Table 3-12 Parameters Required for Various DBMS_REDACT.ALTER_POLICY Actions
Desired Alteration | Parameters to Set |
---|---|
Add a column |
|
Modify a column |
|
Drop a column |
|
Change the policy expression |
|
Change the description of the policy |
|
Change the description of the column |
|
3.15.4 Tutorial: Altering an Oracle Data Redaction Policy
You can redact multiple columns in a table or view, with each column having its own redaction setting and named policy expression.
The exercise in this section shows how to modify a Data Redaction policy so that multiple columns are redacted. It also shows how to change the expression
setting for the policy. To accomplish this, you must run the DBMS_REDACT.ALTER_POLICY
procedure in stages.
-
Connect to the PDB as a user who has privileges to create users and grant them privileges.
-
Create the following users:
GRANT CREATE SESSION TO dr_admin IDENTIFIED BY password; GRANT CREATE SESSION TO sales_rep IDENTIFIED BY password; GRANT CREATE SESSION TO support_rep IDENTIFIED BY password;
-
Grant
EXECUTE
on theDBMS_REDACT
PL/SQL package to userdr_admin
.GRANT EXECUTE ON DBMS_REDACT TO dr_admin;
- Grant the
ADMINISTER REDACTION POLICY
system privilege to userdr_admin
.GRANT ADMINISTER REDACTION POLICY TO dr_admin;
-
Connect as user
OE
. -
Create and populate a table that contains customer credit card information.
CREATE TABLE cust_order_info( first_name varchar2(20), last_name varchar2(20), address varchar2(30), city varchar2(30), state varchar2(3), zip varchar2(5), cc_num varchar2(19), cc_exp varchar2(7)); INSERT INTO cust_order_info VALUES ('Jane','Doe','39 Mockingbird Lane', 'San Francisco', 'CA', 94114, '5105 1051 0510 5100', '10/2018'); INSERT INTO cust_order_info VALUES ('Mary','Hightower','2319 Maple Street', 'Sonoma', 'CA', 95476, '5111 1111 1111 1118', '03/2019'); INSERT INTO cust_order_info VALUES ('Herbert','Donahue','292 Winsome Way', 'San Francisco', 'CA', 94117, '5454 5454 5454 5454', '08/2018');
-
Grant the
SELECT
privilege on thecust_order_info
table to thesales_rep
andsupport_rep
users.GRANT SELECT ON cust_order_info TO sales_rep, support_rep;
-
Connect as user
dr_admin
. -
Modify the policy to include redaction of the expiration date.
BEGIN DBMS_REDACT.ALTER_POLICY( object_schema => 'oe', object_name => 'cust_order_info', policy_name => 'redact_cust_cc_info', action => DBMS_REDACT.ADD_COLUMN, column_name => 'cc_exp', function_type => DBMS_REDACT.RANDOM); END; /
-
Modify the policy again, to use a condition so that the
sales_rep
user views the redacted values and thesupport_rep
user views the actual data.BEGIN DBMS_REDACT.ALTER_POLICY( object_schema => 'oe', object_name => 'cust_order_info', policy_name => 'redact_cust_cc_info', action => DBMS_REDACT.MODIFY_EXPRESSION, expression => 'SYS_CONTEXT(''USERENV'',''SESSION_USER'') = ''SALES_REP'''); END; /
-
To test the policy, have the two users query the
cust_order_info
table.First, connect as
support_rep
and query the table.SELECT cc_num, cc_exp FROM OE.cust_order_info; CC_NUM CC_EXP ------------------- ------- 5105 1051 0510 5100 10/2018 5111 1111 1111 1118 03/2019 5454 5454 5454 5454 08/2018
User
support_rep
can view the actual data. Next, connect assales_rep
and query the table.SELECT cc_num, cc_exp FROM OE.cust_order_info; CC_NUM CC_EXP ---------------- ------- ************5100 lST=033 ************1118 OZA.w4C ************5454 B(9+;O1
Data is redacted for user
sales_rep
. -
As user
dr_admin
, alter thecust_order_info
to include a condition so that onlysupport_rep
sees the redacted data butsales_rep
sees the actual data.BEGIN DBMS_REDACT.ALTER_POLICY( object_schema => 'oe', object_name => 'cust_order_info', policy_name => 'redact_cust_cc_info', action => DBMS_REDACT.MODIFY_EXPRESSION, expression => 'SYS_CONTEXT(''USERENV'',''SESSION_USER'') = ''SUPPORT_REP'''); END; /
-
Have the users test the policy again.
First,
support_rep
tests the policy:SELECT cc_num, cc_exp FROM OE.cust_order_info; CC_NUM CC_EXP ---------------- ------- ************5100 1^XMF~` ************1118 qz+9=#S ************5454 *KCaUkm
User
support_rep
can no longer view the actual data; it is now redacted.Next, connect as
sales_rep
and query the table.SELECT cc_num, cc_exp FROM OE.cust_order_info; CC_NUM CC_EXP ------------------- ------- 5105 1051 0510 5100 10/2018 5111 1111 1111 1118 03/2019 5454 5454 5454 5454 08/2018
User
sales_rep
now can view the actual data. -
If you do not need the components of this tutorial, then you can remove them.
Connect as
dr_admin
and drop the policy.BEGIN DBMS_REDACT.DROP_POLICY ( object_schema => 'oe', object_name => 'cust_order_info', policy_name => 'redact_cust_cc_info'); END; /
Connect as a security administrator and drop the users.
DROP USER dr_admin; DROP USER sales_rep; DROP USER support_rep;
Connect as user
OE
and drop thecust_order_info
table.DROP TABLE cust_order_info;