dataredaction
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| dataredaction [2015/07/23 13:19] – created z0hpvk | dataredaction [2025/03/08 22:24] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ===== Data Redaction ===== | ===== Data Redaction ===== | ||
| Uses the DBMS_REDACT package.\\ | Uses the DBMS_REDACT package.\\ | ||
| + | The following procedures can be used ... | ||
| + | * ADD_POLICY | ||
| + | * ALTER_POLICY | ||
| + | * DISABLE_POLICY | ||
| + | * DROP_POLICY | ||
| + | * ENABLE_POLICY | ||
| + | |||
| The following Function Types are available ... | The following Function Types are available ... | ||
| * DBMS_REDACT.NONE | * DBMS_REDACT.NONE | ||
| Line 6: | Line 13: | ||
| * DBMS_REDACT.PARTIAL (Number, Character, Date) | * DBMS_REDACT.PARTIAL (Number, Character, Date) | ||
| * DBMS_REDACT.RANDOM | * DBMS_REDACT.RANDOM | ||
| + | |||
| + | The below examples fully redacts all details in the card_no column. | ||
| + | < | ||
| + | DBMS_REDACT.add_policy( | ||
| + | object_schema => ' | ||
| + | object_name | ||
| + | column_name | ||
| + | policy_name | ||
| + | function_type => DBMS_REDACT.full, | ||
| + | expression | ||
| + | ); | ||
| + | END;</ | ||
| + | There is a EXEMPT REDACTION POLICY privilege.\\ | ||
| + | CTAS commands against a redacted table will fail.\\ | ||
| + | Redaction does not apply to the WHERE clause.\\ | ||
| + | |||
| + | [[https:// | ||
dataredaction.1437657549.txt.gz · Last modified: (external edit)
