RMAN


RMAN
How does one create an RMAN Recovery Catalog?
sqlplus sys
SQL> create user rman identified by rman;
SQL> alter user rman default tablespace RMAN temporary tablespace temp;
SQL> alter user rman quota unlimited on RMAN;
SQL> grant connect, resource, recovery_catalog_owner to rman;
SQL> exit;
Next Login to rman and create schema for the above created Catalog
rman catalog rman/rman
RMAN> create catalog tablespace Users;
RMAN> exit;
 
Now Oracle RMAN has been very popular and a compulsory requests for the companies who 
are planning to shift from older versions to New Version Oracle 11g. 

No comments:

Post a Comment