Registering Database Vault
In Oracle Database 12c process of configuring and enabling Database Vault is different than in Oracle Database 11g. In this recipe, you will learn to register Oracle Database Vault in multitenant environment in two situations:
When Oracle Database 12c is already installed
During the installation of Oracle Database 12c
Getting ready
To complete this recipe, you'll need an existing common user who has a privilege to create users and grant create session
and set container
privileges (for example, c##maja
).
How to do it...
To register Database Vault with Oracle Database 12c when the database is already installed, perform the following steps:
Connect to the root container as a user who has privileges to create users and grant
create session
andset container
privileges (for example,c##maja
):$ sqlplus c##maja
Create two users (for example,
c##dbv_owner
andc##dbv_acctmgr
) and grant themcreate session
andset container
privileges:SQL> create user c##dbv_owner identified...