This policy will replace the first 4 digits of the value from the
SALARY
column with the number
9
and the first digit of
the value from the
COMMISSION_PCT
column with a
9
.
BEGIN
DBMS_REDACT.ADD_POLICY(
object_schema => 'HR',
object_name => 'EMPLOYEES',
column_name => 'SALARY',
column_description => 'Employees salary column shows employee salary',
policy_name => 'redact_emp_sal_comm',
policy_description => 'Partially redacts the employee salary column',
function_type => DBMS_REDACT.PARTIAL,
function_parameters => '9,1,4',
expression => '1=1');
END;
/
BEGIN
DBMS_REDACT.ALTER_POLICY(
object_schema => 'HR',
object_name => 'EMPLOYEES',
policy_name => 'redact_emp_sal_comm',
action => DBMS_REDACT.ADD_COLUMN,
column_name => 'COMMISSION_PCT',
function_type => DBMS_REDACT.PARTIAL,
function_parameters => '9,1,1',
expression => '1=1');
END;
/