SQL*Plus: Release 11.1.0.6.0 - Production on Thu Apr 17 10:20:27 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining,
Oracle Database Vault and Real Application Testing options
SQL>
Select the tablespace name, where respective objects will be created
Specify the details for the Vault owner. Here you can also specify the credentials for separate account manager
Select the server mode
You should dialog boxes like
Once the configuration has successfully completed, we can start using the Database vault GUI. Typical URL will be
https://hostname:<port>/dva/login.jsp
Here it will be using the same port, which is currently being used for Database Console.
NOTE: We can not use SYS / SYSTEM users to logging to vault. We'll get following error message if we try to do so.
If we try to grant vault related role using SYS
$ sqlplus / as sysdba
SQL> GRANT DV_SECANALYST TO VTEST;
GRANT DV_SECANALYST TO VTEST
*
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-47401: Realm violation for grant role privilege on DV_SECANALYST.
ORA-06512: at "DVSYS.AUTHORIZE_EVENT", line 55
ORA-06512: at line 31
One should be Valut owner to grant DV_SECANALYST / DV_ADMIN role.
$ sqlplus vowner
SQL*Plus: Release 11.1.0.6.0 - Production on Thu Apr 17 10:58:38 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP, Data Mining,
Oracle Database Vault and Real Application Testing options
SQL> GRANT DV_SECANALYST TO VTEST;
Grant succeeded.
SQL> GRANT DV_ADMIN TO VTEST;
0 comments:
Post a Comment