Install the database vault

After install the database vault we find it with the following SQL.

SQL> SELECT * FROM V$OPTION
2 WHERE PARAMETER = 'Oracle Database Vault';

PARAMETER VALUE
---------------------------------------------------------------- ---------------------------------------
-
Oracle Database Vault TRUE

But we still need a configuration before using it.

Because there is no schema to hold the database vault objects.

SQL> select owner,OBJECT_NAME from dba_objects where OBJECT_NAME='DBMS_MACADM';

未选定行

configure with dbcait is very simple:

Install the database vault_第1张图片Install the database vault_第2张图片

After configuration the query should return the result;

SQL> conn / as sysdba
已连接。
SQL> /

OWNER OBJECT_NAME
------------------------------ -------------------------------------------------------------------------------------------------
-------------------------------
PUBLIC DBMS_MACADM
DVSYS DBMS_MACADM
DVSYS DBMS_MACADM

你可能感兴趣的:(database)