2.5 Random Data Redaction to Generate Random Values
In random data redaction, the entire value is redacted by replacing it with a random value.
The redacted values displayed in the result set of the query change randomly each time application users run the query.
This type of redaction is useful in cases where you do not want it to be obvious that the data was redacted. It works especially well for number and date-time data types, where it is difficult to distinguish between random and real data.
The displayed output for random values changes based on the data type of the redacted column, as follows:
-
Character data types: The random output is a mixture of characters (for example,
HTU[G{\pjkEWcK
). It behaves differently for theCHAR
andVARCHAR2
data types, as follows:-
CHAR data type: The redacted output is always in the same character set as the character set of the column. The byte length of the redacted output is always the same as the column definition length (that is, the column length that was provided at the time of table creation). For example, if the column is
CHAR(20)
, then a string of 20 random characters is provided in the redacted output of the user's query. -
VARCHAR2 data type: For random redaction of a
VARCHAR
data type, the redacted output is always in the same character set as the character set of the column. The length of the redacted output is limited based on the length of the actual data in the column. No characters in excess of the length of the actual data are displayed. For example, if the column isVARCHAR2(20)
and the row being redacted contains actual data with a length of 12, then a string of 12 random characters (not 20) is provided in the redacted output of the user's query for that row.
-
-
Number data types: Each actual number value is redacted by replacing it with a random, non-negative number. This redaction results in random numbers that do not exceed the precision of the actual data. For example, the number
987654321
can be redacted by replacing it with any of the numbers12345678
,13579
,0
, or987654320
, but not by replacing it with any of the numbers987654321
,99987654321
, or-1
. The number-123
could be redacted by replacing it with the numbers122
,0
, or83
, but not by replacing it with any of the numbers123
,1123
, or-2
.The only exception to the above is when the actual value is an integer between -1 and 9. In this case, the actual data is redacted by replacing it with a random, non-negative integer modulo ten (10).
-
Date-time data types: When values of the date data type are redacted using random Data Redaction, Oracle Database displays them with random dates that are always different from those of the actual data.
The setting for using random redaction is as follows:
function_type => DBMS_REDACT.RANDOM
Related Topics