Configure RMAN Recovery Catalog
RMAN recovery catalog Is another database which is on a separate server and which will save only the details of your backups in terms of metadata of the backup.
oracle configurationintermediate
by OracleDba
14 views
RMAN recovery catalog Is another database which is on a separate server and which will save only the details of your backups in terms of metadata of the backup.
12345678910111213141516171819
SQL> create tablespace rmantbs datafile '/u01/app/oracle/oradata/prim/rmantbs01.dbf' size 50mb;
SQL> create user testuser identified by testuser default tablespace rmantbs temporary tablespace temp;
Grant permissions to testuser user
SQL> grant connect,resource,recovery_catalog_owner to testuser;
prim =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.50)(PORT = 1521)
)
(CONNECT_DATA =
(SERVICE_NAME = prim)
)
)
SQL> create user testuser identified by testuser default tablespace rmantbs temporary tablespace temp;
Grant permissions to testuser user
SQL> grant connect,resource,recovery_catalog_owner to testuser;1234567891011121314151617
prim =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.50)(PORT = 1521)
)
(CONNECT_DATA =
(SERVICE_NAME = prim)
)
)
rman catalog testuser/testuser@prim
RMAN> create catalog;
rman target / catalog testuser/testuser@prim
RMAN> register database;Please to add comments
No comments yet. Be the first to comment!