Oracle11G RMAN备份和恢复笔记(四)

常用的RMAN命令:
 report schema;
 list backup;
 crosscheck backup;
 delete
 validate
 
RMAN Catalog 模式
 采用catalog database rman方式
   建议将catalog database不要和target放在一起.
  1.创建catalog所用的表空间
   create tablespace rman_ts datafile '' size 20M;
  2.创建rman用户并授权
    create user rman identified by rman
 default tablesapce rman_ts
 quota unlimited on rman_ts
 default temporary tablespace temp;
 
    grant recovery_catalog_owner to rman;
  3.创建恢复目录
    rman catalog rman/rman
 rman > create catalog tablespace rman_ts;
 rman > register database;
 
备注: catalog信息将信息不再存放在controlfile中,
 而是放在创建的表空间中.
 
 rman target /  catalog rman/rman
 
 
 

你可能感兴趣的:(oracle11g)