3.8 Creating a Partial Redaction Policy
In partial data redaction, you can redact portions of data for different kinds of data types.
3.8.1 About Creating Partial Redaction Policies
In partial data redaction, only a portion of the data, such as the first five digits of an identification number, are redacted.
For example, you can redact most of a credit card number with asterisks (*), except for the last 4 digits. You can create policies for columns that use character, number, or date-time data types. For policies that redact character data types, you can use fixed character redaction formats. If you have the Enterprise Manager for Oracle Database 12.1.0.7 plug-in deployed on your system, then you can also create and save custom redaction formats.
Note:
In previous releases, the term shortcut was used for the term format.
3.8.2 Syntax for Creating a Partial Redaction Policy
The DBMS_REDACT.ADD_POLICY
statement enables you to create policies that redact specific parts of the data returned to the application.
The DBMS_REDACT.ADD_POLICY
fields for creating a partial redaction policy are as follows:
DBMS_REDACT.ADD_POLICY ( object_schema IN VARCHAR2 := NULL, object_name IN VARCHAR2, column_name IN VARCHAR2 := NULL, policy_name IN VARCHAR2, function_type IN BINARY_INTEGER := NULL, function_parameters IN VARCHAR2 := NULL, expression IN VARCHAR2, enable IN BOOLEAN := TRUE);
In this specification:
-
object_schema
,object_name
,column_name
,policy_name
,expression
,enable
: See General Syntax of the DBMS_REDACT.ADD_POLICY Procedure -
function_type
: Specifies the function used to set the type of redaction. EnterDBMS_REDACT.PARTIAL
. -
function_parameters
: The parameters that you set here depend on the data type of the column specified for thecolumn_name
parameter. See the following sections for details:
3.8.3 Creating Partial Redaction Policies Using Fixed Character Formats
The DBMS_REDACT.ADD_POLICY
function_parameters
parameter can be configured to support redaction of
fixed character data types.
3.8.3.1 Settings for Fixed Character Formats
Oracle Data Redaction provides special predefined formats to configure policies that use fixed characters.
Table 3-9 describes DBMS_REDACT.ADD_POLICY
function_parameters
parameter formats that you can use for commonly
redacted identity numbers (such as Social Security Numbers or Canadian Social
Insurance Numbers), postal codes, and credit card numbers that use either the
VARCHAR2
or NUMBER
data types for their
columns.
Table 3-9 Partial Fixed Character Redaction Formats
Format | Description |
---|---|
|
Redacts the first 5 numbers of Social Security Numbers when the column is a
|
|
Redacts the last 4 numbers of Social Security Numbers when the column is a
|
|
Redacts the entire Social Security Number when the column is a
|
|
Redacts the first 5 numbers of Social Security Numbers when the column is a
|
|
Redacts the last 4 numbers of Social Security Numbers when the column is a
|
|
Redacts the entire Social Security Number when the column is a
|
|
Redacts the Canadian Social Insurance number by replacing the first 6 digits by |
|
Redacts the Canadian Social Insurance number by replacing the first 6 digits by |
|
Redacts the Canadian Social Insurance Number by replacing the first 6 digits by |
|
Redacts the UK National Insurance number by replacing the first 6 digits by |
|
Redacts the UK National Insurance number by replacing the first 6 digits by |
|
Redacts the credit card number (other than American Express) by replacing everything but the last 4 digits by |
|
Redacts the credit card number (other than American Express) by replacing everything
but the last 4 digits by |
|
Redacts a 16-digit credit card number (other than American Express), leaving the last 4 digits displayed. For example, |
|
Redacts the American Express credit card number by replacing the digits with |
|
Redacts the American Express Credit Card Number by replacing the digits with |
|
Redacts a 5-digit postal code when the column is a |
|
Redacts a 5-digit postal code when the column is a |
|
Redacts all dates to |
|
Redacts the North American phone number by leaving the area code, but replacing everything else with |
|
Redacts the North American phone number by leaving the area code, but replacing
everything else with |
|
Redacts the North American phone number by leaving the area code, but replacing everything else with |
|
Redacts dates that are in the |
Related Topics
3.8.3.2 Example: Partial Redaction Policy Using a Fixed Character Format
You can use the DBMS_REDACT.ADD_POLICY
PL/SQL procedure to create a partial redaction policy that uses a fixed character format.
Example 3-3 shows how Social Security Numbers in a VARCHAR2
data type
column can be redacted using the REDACT_US_SSN_F5
format.
Example 3-3 Partially Redacted Character Values
BEGIN DBMS_REDACT.ADD_POLICY( object_schema => 'mavis', object_name => 'cust_info', column_name => 'ssn', policy_name => 'redact_cust_ssns3', function_type => DBMS_REDACT.PARTIAL, function_parameters => DBMS_REDACT.REDACT_US_SSN_F5, expression => '1=1', policy_description => 'Partially redacts 1st 5 digits in Social Security Numbers', column_description => 'ssn contains Social Security Numbers'); END; /
Query and redacted result:
SELECT ssn FROM mavis.cust_info; SSN ------- XXX-XX-4320 XXX-XX-4323 XXX-XX-4325 XXX-XX-4329
3.8.4 Creating Partial Redaction Policies Using Character Data Types
The DBMS_REDACT.ADD_POLICY
function_parameters
parameter can be configured to support redaction of
character data types.
3.8.4.1 Settings for Character Data Types
Oracle Data Redaction provides special settings to configure policies that use character data types.
When you set the DBMS_REDACT.ADD_POLICY
function_parameters
parameter to define partial redaction of
character data types, enter values for the following settings in the order shown.
Separate each value with a comma.
Note:
Be aware that you must use a fixed width character set for the partial redaction. In other words, each character redacted must be replaced by another of equal byte length. If you want to use a variable-length character set (for example, UTF-8), then you must use a regular expression-based redaction.
The settings are as follows:
-
Input format: Defines how the data is currently formatted. Enter
V
for each character that potentially can be redacted, such as all of the digits in a credit card number. EnterF
for each character that you want to format using a formatting character, such as hyphens or blank spaces in the credit card number. Ensure that each character has a correspondingV
orF
value. (The input format values are not case-sensitive.) -
Output format: Defines how the displayed data should be formatted. Enter
V
for each character to be potentially redacted. Replace eachF
character in the input format with the character that you want to use for the displayed output, such as a hyphen. (The output format values are not case-sensitive.) -
Mask character: Specifies the character to be used for the redaction. Enter a single character to use for the redaction, such as an asterisk (*).
-
Starting digit position: Specifies the starting
V
digit position for the redaction. -
Ending digit position: Specifies the ending
V
digit position for the redaction. Do not include theF
positions when you decide on the ending position value.
For example, the following setting redacts the first 12 V
digits of the credit card number 5105 1051 0510 5100
, and replaces the F
positions (which are blank spaces) with hyphens to format it in a style normally used for credit card numbers, resulting in ****-****-****-4320
.
function_parameters => 'VVVVFVVVVFVVVVFVVVV,VVVV-VVVV-VVVV-VVVV,*,1,12',
3.8.4.2 Example: Partial Redaction Policy Using a Character Data Type
The DBMS_REDACT.ADD_POLICY
PL/SQL procedure can create a partial redaction policy that uses a character data type.
Example 3-4 shows how to redact Social Security Numbers that are in a
VARCHAR2
data type column and to preserve the character hyphens in the
Social Security Number.
Example 3-4 Partially Redacted Character Values
BEGIN DBMS_REDACT.ADD_POLICY( object_schema => 'mavis', object_name => 'cust_info', column_name => 'ssn', policy_name => 'redact_cust_ssns2', function_type => DBMS_REDACT.PARTIAL, function_parameters => 'VVVFVVFVVVV,VVV-VV-VVVV,*,1,5', expression => '1=1', policy_description => 'Partially redacts Social Security Numbers', column_description => 'ssn contains character Social Security Numbers'); END; /
Query and redacted result:
SELECT ssn FROM mavis.cust_info; SSN ----------- ***-**-4320 ***-**-4323 ***-**-4325 ***-**-4329
3.8.5 Creating Partial Redaction Policies Using Number Data Types
The DBMS_REDACT.ADD_POLICY
function_parameters
parameter can be configured to support redaction of
number data types.
3.8.5.1 Settings for Number Data Types
When you set values for the number data type, you must specify a redact character, a starting digit position, and an ending digit position.
For partial redaction of number data types, you can enter values for the following settings for the function_parameters
parameter of the DBMS_REDACT.ADD_POLICY
procedure, in the order shown.
-
Redact character: Specifies the character to display. Enter a number from
0
to9
. -
Starting digit position: Specifies the starting digit position for the redaction, such as
1
for the first digit. -
Ending digit position: Specifies the ending digit position for the redaction.
For example, the following setting redacts the first five digits of the Social
Security Number 987654321
, resulting in 999994321
.
function_parameters => '9,1,5',
Related Topics
3.8.5.2 Example: Partial Redaction Policy Using a Number Data Type
The DBMS_REDACT.ADD_POLICY
procedure can create a partial redaction policy that uses a number data type.
Example 3-5 shows how to partially redact a set of Social Security Numbers in the
mavis.cust_info
table, for any application user who logs in. (Hence, the
expression
parameter evaluates to TRUE
.)
This type of redaction is useful when the application is expecting a formatted
number and not a string. In this scenario, the Social Security Numbers are in a column of the
data type NUMBER
. In other words, the ssn
column contains
numbers only, not other characters such as hyphens or blank spaces.
Example 3-5 Partially Redacted Data Redaction Numeric Values
BEGIN DBMS_REDACT.ADD_POLICY( object_schema => 'mavis', object_name => 'cust_info', column_name => 'ssn', policy_name => 'redact_cust_ssns1', function_type => DBMS_REDACT.PARTIAL, function_parameters => '7,1,5', expression => '1=1', policy_description => 'Partially redacts Social Security Numbers', column_description => 'ssn contains numeric Social Security Numbers'); END; /
Query and redacted result:
SELECT ssn FROM mavis.cust_info; SSN --------- 777774320 777774323 777774325 777774329
3.8.6 Creating Partial Redaction Policies Using Date-Time Data Types
The DBMS_REDACT.ADD_POLICY
function_parameters
parameter can be configured to support redaction of
date-time data types.
3.8.6.1 Settings for Date-Time Data Types
Oracle Data Redaction provides special settings for configuring date-time data types.
For partial redaction of date-time data types, enter values for the following DBMS_REDACT.ADD_POLICY
function_parameters
parameter settings.
Enter these values in the order shown:
-
m
: Redacts the month. To redact with a month name, append1
–12
to lowercasem
. For example,m5
displays asMAY
. To omit redaction, enter an uppercaseM
. -
d
: Redacts the day of the month. To redact with a day of the month, append1
–31
to a lowercased
. For example,d7
displays as07
. If you enter a higher number than the days of the month (for example,31
for the month of February), then the last day of the month is displayed (for example,28
). To omit redaction, enter an uppercaseD
. -
y
: Redacts the year. To redact with a year, append1
–9999
to a lowercasey
. For example,y1984
displays as84
. To omit redaction, enter an uppercaseY
. -
h
: Redacts the hour. To redact with an hour, append0
–23
to a lowercaseh
. For example,h20
displays as20
. To omit redaction, enter an uppercaseH
. -
m
: Redacts the minute. To redact with a minute, append0
–59
to a lowercasem
. For example,m30
displays as30
. To omit redaction, enter an uppercaseM
. -
s
: Redacts the second. To redact with a second, append0
–59
to a lowercases
. For example,s45
displays as45
. To omit redaction, enter an uppercaseS
.
Related Topics
3.8.6.2 Example: Partial Redaction Policy Using Date-Time Data Type
The DBMS_REDACT.ADD_POLICY
procedure can create a partial redaction policy that uses the date-time data type.
Example 3-6 shows how to partially redact a date. This example redacts the birth year of customers; replacing it with 13
, but retaining the remaining values.
Example 3-6 Partially Redacted Data Redaction Using Date-Time Values
BEGIN DBMS_REDACT.ADD_POLICY( object_schema => 'mavis', object_name => 'cust_info', column_name => 'birth_date', policy_name => 'redact_cust_bdate', function_type => DBMS_REDACT.PARTIAL, function_parameters => 'MDy2013HMS', expression => '1=1', policy_description => 'Replaces birth year with 2013', column_description => 'birth_date contains customer's birthdate'); END; /
Query and redacted result:
SELECT birth_date FROM mavis.cust_info; BIRTH_DATE 07-DEC-13 09.45.40.000000 AM 12-OCT-13 04.23.29.000000 AM