Oracle 10g配置RMAN RECOVERY CATALOG

简介:

Oracle的RMAN配置信息默认存放在target数据库的控制文件中,当然也可以配置一个recovery catalog服务器来存储这些信息,下面是控制文件和恢复的特性比较,一般来说维护10台以下的oracle数据库备份,可以不需要配置恢复目录.

  Control file:
– Simpler administration
– Default

Recovery catalog:
– Replicates control file data
– Has room for more data
– Can service many targets
– Can store RMAN scripts

RMAN repository data is always stored in the control file of the target database. But it can also be stored in a separate database, called a recovery catalog.

A recovery catalog preserves backup information in a separate database, which is useful in the event of a lost control file. This allows you to store a longer history of backups than what is possible with a control file–based repository. A single recovery catalog is able to store information for multiple target databases. The recovery catalog can also hold RMAN stored scripts, which are sequences of RMAN commands for common backup tasks. Centralized storage of scripts in the recovery catalog can be more convenient than working with command files.

Usage of a separate recovery catalog database is not recommended for small installations where administration of a separate recovery catalog database would be burdensome

 

下面来演示下恢复目录的配置,其中ora10g为catalog数据库,target数据库为orac 

 
  1. 1:创建用户和表空间并授权  
  2.  
  3. SQL> CREATE TABLESPACE rman DATAFILE '/u01/app/oradata/rman01.dbf'  
  4.    2 SIZE 500M AUTOEXTEND ON  NEXT 20M MAXSIZE 2G EXTENT MANAGEMENT LOCAL;  
  5.  
  6. Tablespace created.  
  7.  
  8.  
  9. SQL> CREATE USER RMAN IDENTIFIED BY rman  
  10.   2  TEMPORARY TABLESPACE temp  
  11.   3  DEFAULT TABLESPACE rman  
  12.   4  QUOTA UNLIMITED ON rman;  
  13.  
  14. User created.  
  15.  
  16.  
  17. SQL> GRANT RECOVERY_CATALOG_OWNER TO rman;  
  18.  
  19. Grant succeeded.  
  20.  
  21.  
  22. SQL> conn rman/rman  
  23. Connected.  
  24.  
  25. SQL> select count (*) from user_objects;  
  26.  
  27.   COUNT(*)  
  28. ----------  
  29.          0  
  30.  
  31. 2:创建恢复目录  
  32. [oracle@ora10g ~]$ rman catalog  rman/rman@ora10g  
  33.  
  34. Recovery Manager: Release 10.2.0.1.0 - Production on Wed Mar 16 09:58:16 2011  
  35.  
  36. Copyright (c) 1982, 2005, Oracle.  All rights reserved.  
  37.  
  38. connected to recovery catalog database  
  39.  
  40. RMAN> CREATE CATALOG;  
  41.  
  42. recovery catalog created  
  43.  
  44.    
  45.  
  46. SQL> select count (*) from user_objects;   //可以看出在rman表空间下的对象个数为195个  
  47.  
  48.   COUNT(*)  
  49. ----------  
  50.        195  
  51.  
  52. 3:连接,注册目标数据库,同步catalog和控制文件  
  53.  
  54. [oracle@orac ~]$ rman target sys/123456@orac catalog rman/rman@ora10g  
  55.  
  56. Recovery Manager: Release 10.2.0.1.0 - Production on Wed Mar 16 10:14:10 2011  
  57.  
  58. Copyright (c) 1982, 2005, Oracle.  All rights reserved.  
  59.  
  60. connected to target database: ORAC (DBID=1010679485)  
  61. connected to recovery catalog database  
  62.  
  63. RMAN> REGISTER DATABASE;  
  64.  
  65. database registered in recovery catalog  
  66. starting full resync of recovery catalog  
  67. full resync complete  
  68.  
  69. RMAN> RESYNC CATALOG;  
  70.  
  71. starting full resync of recovery catalog  
  72. full resync complete  
  73.  
  74. RMAN> LIST INCARNATION;  
  75. List of Database Incarnations  
  76. DB Key  Inc Key DB Name  DB ID            STATUS  Reset SCN  Reset Time  
  77. ------- ------- -------- ---------------- --- ---------- ----------  
  78. 1       8       ORAC     1010679485       PARENT  1          22-OCT-05  
  79. 1       2       ORAC     1010679485       CURRENT 525876     15-FEB-11   

 本文转自斩月博客51CTO博客,原文链接http://blog.51cto.com/ylw6006/516566如需转载请自行联系原作者


ylw6006

相关文章
|
3月前
|
Ubuntu Oracle 关系型数据库
Oracle VM VirtualBox之Ubuntu 22.04LTS双网卡网络模式配置
这篇文章是关于如何在Oracle VM VirtualBox中配置Ubuntu 22.04LTS虚拟机双网卡网络模式的详细指南,包括VirtualBox网络概述、双网卡网络模式的配置步骤以及Ubuntu系统网络配置。
334 3
|
4月前
|
Oracle 关系型数据库 BI
ORACLE Apex: EBS多组织结构 理解与配置
【8月更文挑战第11天】在Oracle Apex中理解和配置与EBS多组织结构相关内容需掌握:1) EBS多组织结构概念及组成部分,如法律实体、业务单位与库存组织;2) Oracle Apex与EBS集成的目的与方式,包括提供友好界面及自定义业务流程;3) 在Apex中配置多组织结构应用,涉及数据访问控制、页面报表设计及业务流程集成。整体而言,需精通EBS架构与Apex开发技术,以实现高效灵活的企业解决方案。
106 2
|
5月前
|
Oracle 安全 关系型数据库
|
5月前
|
存储 Oracle 关系型数据库
|
5月前
|
存储 Oracle 关系型数据库
关系型数据库Oracle运行RMAN脚本
【7月更文挑战第23天】
54 4
|
5月前
|
SQL Oracle 关系型数据库
关系型数据库Oracle设置 RMAN 环境:
【7月更文挑战第25天】
76 2
|
5月前
|
监控 Oracle 算法
|
5月前
|
SQL Oracle 关系型数据库
关系型数据库Oracle结束 RMAN 会话:
【7月更文挑战第25天】
107 1
|
5月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle编写RMAN脚本
【7月更文挑战第23天】
44 2
|
5月前
|
Oracle 关系型数据库 数据库
关系型数据库Oracle执行RMAN脚本
【7月更文挑战第22天】
87 2