C Oracle Data Redaction Policy Data Dictionary Views
Oracle Database provides data dictionary views that list information about Data Redaction policies.
Before you can query these views, you must be granted the SELECT_CATALOG_ROLE
role.
C.1 REDACTION_COLUMNS
REDACTION_COLUMNS
describes all redacted columns in the
database, giving the owner of the table or view within which the column resides, the
object name, the column name, the type of redaction function, the parameters to the
redaction function (if any), and an optional user-provided description of the
redaction function that is performed on the column.
Column | Datatype | NULL | ullDescription |
---|---|---|---|
|
|
NOT NULL |
Owner of the object that is redacted |
|
|
NOT NULL |
Name of the object that is redacted |
|
|
NOT NULL |
Name of the column that is redacted |
|
|
Redaction function for this column |
|
|
|
Redaction function_parameters for this column |
|
|
|
Regular expression pattern to search for |
|
|
|
Replacement string (up to 4000
characters in length) with up to 500
back-references to subexpressions in the form
|
|
|
|
Integer counting from 1, giving the position where the search should begin |
|
|
|
Either |
|
|
|
To change the default matching
behavior, possible values are a combination of
|
|
|
|
User-provided description of the redaction function that is performed on the column. For example, for a Social Security Number column, the description might be: "redact SSN to XXX-XX-(last 4 digits)". |
See Also:
Oracle Database Data Redaction Guide for more information about Oracle Data Redaction
C.2 REDACTION_EXPRESSIONS
REDACTION_EXPRESSIONS
shows all the Data Redaction named Policy Expressions in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Customer-specified name of the named Policy Expression |
|
|
|
The SQL expression defined for this Data Redaction named Policy Expression |
|
|
|
Owner of the table or view which this named Policy Expression is associated with |
|
|
|
Name of the table or view which this named Policy Expression is associated with |
|
|
|
Name of the column which this named Policy Expression is associated with |
|
|
|
Description of this named Policy Expression |
C.3 REDACTION_POLICIES
REDACTION_POLICIES
displays all redaction policies in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the object with the policy |
|
|
|
Name of the object with the policy |
|
|
|
Name of the policy |
|
|
|
Expression for this policy |
|
|
|
Indicates whether the policy is enabled ( |
|
|
|
Description of the policy |
See Also:
Oracle Database Data Redaction Guide for more information about Oracle Data Redaction
C.4 REDACTION_VALUES_FOR_TYPE_FULL
REDACTION_VALUES_FOR_TYPE_FULL
shows all of the current values for full redaction.
For example, if a redaction policy is applied to a column of type BINARY_DOUBLE
and the redaction type is full redaction, that column will be redacted with the value shown in the BINARY_DOUBLE_VALUE
column of this view.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Redaction result for full redaction on NUMBER columns |
|
|
|
Redaction result for full redaction on BINARY_FLOAT columns |
|
|
|
Redaction result for full redaction on BINARY_DOUBLE columns |
|
|
|
Redaction result for full redaction on CHAR columns |
|
|
|
Redaction result for full redaction on VARCHAR2 columns |
|
|
|
Redaction result for full redaction on NCHAR columns |
|
|
|
Redaction result for full redaction on NVARCHAR2 columns |
|
|
|
Redaction result for full redaction on DATE columns |
|
|
|
Redaction result for full redaction on TIMESTAMP columns |
|
|
|
Redaction result for full redaction on TIMESTAMP WITH TIME ZONE columns |
|
|
|
Redaction result for full redaction on BLOB columns |
|
|
|
Redaction result for full redaction on CLOB columns |
|
|
|
Redaction result for full redaction on NCLOB columns |
See Also:
Oracle Database Data Redaction Guide for more information about Oracle Data Redaction