 |
Oracle Database Vault
Business Use Case Three
|
Control Access to Applications
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 'Rule Sets', and create a rule set as shown here:

The same could be achieved using the following script:
begin
dvsys.dbms_macadm.CREATE_RULE_SET(
rule_set_name => ‘Enforce Local Access’,
description => ‘Enforce Local Access’,
enabled => ‘Y’,
eval_options => 1,
audit_options => 1,
fail_options => 1,
fail_message => '',
fail_code => 0,
handler_options => 0,
handler => NULL);
end;
/
commit;