 |
Oracle Database Vault
Business Use Case One
|
Restricting the DBA from accessing business data
Point your Browser to the Oracle Database Vault Web Administration Interface (dva) using the following URL:
http://<hostname>:<port>/dva
and login using the Database Vault owner account. Click on 'Realms', and create a realm as shown here:

The same could be achieved using the following script:
begin
dvsys.dbms_macadmin.CREATE_REALM (
realm_name => 'HR Realm',
description => 'This realm protects the HR data from DBA access',
enabled => 'Y',
audit_options => 1);
commit;
end;
/
commit;