WEB开发网
开发学院数据库Oracle OCP Oracle 10g管理(一):配置恢复管理器 阅读

OCP Oracle 10g管理(一):配置恢复管理器

 2008-09-05 12:51:32 来源:WEB开发网   
核心提示: Createuserrman_useridentifiedbyrman_userdefaulttablespacexxxtemporaryxxx;4) 用户授权,指定默认和零时表空间Grantconnect,resource,recover_catalog_ownertorman_user

   Createuserrman_useridentifiedbyrman_userdefaulttablespacexxxtemporaryxxx;

4) 用户授权,指定默认和零时表空间

   Grantconnect,resource,recover_catalog_ownertorman_user;

5) 启动RMAN

   rman

6) 连接到恢复目录

   Connectcatalogrman_user/rman_user

7) 指定恢复目录的表空间

   Createcatalogtablespacexxx;

为了备份和恢复,必须完成以下几步:

注册数据库

   Rmantargetxx/xxx@xxx
  Connectcatalogxxx/xxx@xxx
  Registerdatabase;

一旦注册了目标数据库就可以备份目标数据库,就是把备份数据存储在恢复目录中。

执行备份

目标库启动到mount状态

启动rman,连接目标库和目录库 

   Connecttarget
  Connectcatalogxxx/xxx@xxx;

备份目标数据库(包括归档日志)

   RMAN>run{
  allocatechannelc1typedisk;
  backdatabaseformat'db_%u_%d_%s';
  backupformat'log_t%t_s%s_p%p'
  (archivelogall);
  }

意外发现:备份集默认保存在D:oracleproduct10.2.0db_1database下

执行恢复 

   RMAN>run
  2>{allocatechannelc1typedisk;
  3>allocatechannelc2typedisk;
  4>allocatechannelc3typedisk;
  5>restoredatabase;
  6>recoverdatabase;
  7>alterdatabaseopen;
  8>}

多个channel是为了改进重建和恢复时间。

上一页  1 2 3 4  下一页

Tags:OCP Oracle 管理

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接