How would you grant the RVPC user access to specific RMAN database records in the RMAN virtual private catalog?

How would you grant the RVPC user access to specific RMAN database records in the
RMAN virtual private catalog?

How would you grant the RVPC user access to specific RMAN database records in the
RMAN virtual private catalog?

A.
Issue the grant command from the SYS user (or equivalent) of the target database.

B.
Issue the grant command from the SYS user (or equivalent) of the recovery-catalog
database.

C.
Issue the grant command from the recovery catalog-owning schema user account in the
recovery catalog.

D.
Issue the grant command from RMAN when connected to the recovery catalog-owning
schema.

E.
Issue the grant command from RMAN when connected to the target database.



Leave a Reply 3

Your email address will not be published. Required fields are marked *


Cuco

Cuco

Correct Answer B.

Resource: http://docs.oracle.com/cd/B28359_01/backup.111/b28273/rcmsynta013.htm#RCMRF117
Example 2-57 Creating a Virtual Private Catalog

Assume that you created the recovery catalog and registered a database as shown in Example 2-56. Now you want to create a virtual private catalog for database user vpc1. You start SQL*Plus and connect to recovery catalog database catdb with administrator privileges. You create the vpc1 user and grant recovery catalog ownership as follows, replacing password with a user-specified password (see Oracle Database Security Guide for information on creating secure passwords):

SQL> CREATE USER vpc1 IDENTIFIED BY password
2 DEFAULT TABLESPACE vpcusers
3 QUOTA UNLIMITED ON vpcusers;
SQL> GRANT recovery_catalog_owner TO vpc1;
SQL> EXIT

Cuco

Cuco

I take that back. D is correct. Disregard previous comment.