ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Recovery Appliance (Recovery
Appliance) Backup and Recovery Support for data masking with workload captures and replays.
API for the extract phase of rat masking for capture files. It makes a call out to the kernel function which iterates over each statement in each capture file and extracts all sensitive bind values.
dbms_rat_mask.dbr_extract_data(
capture_directory IN VARCHAR2,
script_id IN NUMBER);
API for the mask phase of rat masking for capture files. It makes a call out to the kernel function which iterates over each stmt in each cap file and replaces the values of all sensitive binds with masked values. It also removes binds in AWR.
dbms_rat_mask.dbr_mask_data(
capture_directory IN VARCHAR2,
script_id IN NUMBER);
dbms_rat_mask.initialize(
user_name IN VARCHAR2, -- user executing the masking script
package_name IN VARCHAR2, -- name of masking package
mask_definition IN XMLTYPE, -- xml of masking definition
control_xml IN XMLTYPE DEFAULT NULL); -- control xml from masking definition
API for the extract phase of rat masking for SQL tuning sets.
It makes a call out to the kernel function which iterates over each statement in each STS in the db and extracts all sensitive bind values.
dbms_rat_mask.spa_extract_data(spa_extract_data(script_id IN NUMBER);
API for the mask phase of rat masking for SQL tuning sets.
It makes a call out to the kernel function which iterates over each stmt in each STS in the db and replaces the values of all sensitive binds with masked values.
It also removes peeked binds present in the other_xml column of the plan lines table.
dbms_rat_mask.spa_mask_data(spa_mask_data(script_id IN NUMBER);