RMAN - 备份异机恢复
OS:
Oracle Linux Server release 5.7
DB:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
① RMAN异机恢复的时候,db_name必须相同。如果想要改别的实例命,可以在RMAN恢复成功后,用 nid 命令修改。
② 恢复路径与源库不相同,在restore时用set指定新位置,并用switch logfile all 将信息更新到controlfile文件中
准备工作:
1、查看源库的DBID
SQL> select name,dbid from v$database;
NAME DBID
--------------------------- ----------
YOON 675362528
SQL>
2、将源库的初始化参数文件拷贝到目标服务器上
3、将控制文件,数据文件,归档文件拷贝到目标服务器上
步骤:
1、准备工作准备好后,创建密码文件
[oracle@yoon dbs]$ orapwd file=orapwyoon password=oracle
2、检查拷贝过去的目录和文件的所属组和权限
3、连接到RMAN
[oracle@yoon dbs]$ rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Tue Sep 17 14:33:27 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database (not started)
RMAN>
4、恢复初始化参数文件
RMAN> restore spfile to pfile '/u01/oracle/product/11.2.0/db_1/dbs/inityoon.ora' from '/u01/backup/c-675362528-20130915-02';
Starting restore at 17-SEP-13
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=19 device type=DISK
channel ORA_DISK_1: restoring spfile from AUTOBACKUP /u01/backup/c-675362528-20130915-02
channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
Finished restore at 17-SEP-13
RMAN>
5、用pfile将目标库启动到nomount状态
RMAN> startup nomount pfile='/u01/oracle/product/11.2.0/db_1/dbs/inityoon.ora';
Oracle instance started
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
RMAN>
6、恢复控制文件
RMAN> restore controlfile from '/u01/backup/c-675362528-20130915-02';
Starting restore at 17-SEP-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=19 device type=DISK
channel ORA_DISK_1: restoring control file
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/u01/oracle/oradata/yoon/control01.ctl
output file name=/u01/oracle/fast_recovery_area/yoon/control02.ctl
Finished restore at 17-SEP-13
RMAN>
7、将数据库启动到mount状态
RMAN> alter database mount;
database mounted
released channel: ORA_DISK_1
RMAN>
8、restore数据库
RMAN> restore database;
Starting restore at 17-SEP-13
Starting implicit crosscheck backup at 17-SEP-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=19 device type=DISK
Crosschecked 1 objects
Finished implicit crosscheck backup at 17-SEP-13
Starting implicit crosscheck copy at 17-SEP-13
using channel ORA_DISK_1
Finished implicit crosscheck copy at 17-SEP-13
searching for all files in the recovery area
cataloging files...
no files cataloged
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00001 to /u01/oracle/oradata/yoon/system01.dbf
channel ORA_DISK_1: restoring datafile 00002 to /u01/oracle/oradata/yoon/sysaux01.dbf
channel ORA_DISK_1: restoring datafile 00003 to /u01/oracle/oradata/yoon/undotbs01.dbf
channel ORA_DISK_1: restoring datafile 00004 to /u01/oracle/oradata/yoon/users01.dbf
channel ORA_DISK_1: reading from backup piece /u01/oracle/fast_recovery_area/YOON/backupset/2013_09_15/o1_mf_nnndf_TAG20130915T124630_93bgx6qx_.bkp
channel ORA_DISK_1: piece handle=/u01/oracle/fast_recovery_area/YOON/backupset/2013_09_15/o1_mf_nnndf_TAG20130915T124630_93bgx6qx_.bkp tag=TAG20130915T124630
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:35
Finished restore at 17-SEP-13
RMAN>
9、recover 数据库
RMAN> recover database;
Starting recover at 17-SEP-13
using channel ORA_DISK_1
starting media recovery
archived log for thread 1 with sequence 1 is already on disk as file /u01/oracle/fast_recovery_area/YOON/archivelog/2013_09_15/o1_mf_1_1_93bj33dx_.arc
archived log file name=/u01/oracle/fast_recovery_area/YOON/archivelog/2013_09_15/o1_mf_1_1_93bj33dx_.arc thread=1 sequence=1
unable to find archived log
archived log thread=1 sequence=1
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 09/17/2013 14:45:37
RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 1 and starting SCN of 1298407
RMAN>
RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 1 and starting SCN of 1298407
提醒恢复到一个未知的SCN号,在alter database mount 之后,通过set until scn 或 set until time命令设置恢复到scn号或时间。
10、用open resetlogs 打开数据库
RMAN> alter database open resetlogs;
database opened
RMAN>
* 11g r2,在open resetlogs后,自动创建默认路径的temp表空间和redo文件
11、查看目标的BDID
SQL> select name,dbid from v$database;
NAME DBID
--------------------------- ----------
YOON 675362528
SQL>
12、用NID命令修改DBID,执行前主要关闭all session
① 修改dbid可能会遇到错误,建议备份数据库,特别是控制文件,因为nid会修改控制文件的信息
② 需要将数据库启动到mount
RMAN> shutdown immediate
database closed
database dismounted
Oracle instance shut down
RMAN>
RMAN> startup mount
connected to target database (not started)
Oracle instance started
database mounted
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
RMAN>
[oracle@yoon ~]$ nid target=sys/oracle
DBNEWID: Release 11.2.0.3.0 - Production on Tue Sep 17 14:57:03 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to database YOON (DBID=675362528)
Connected to server version 11.2.0
Control Files in database:
/u01/oracle/oradata/yoon/control01.ctl
/u01/oracle/fast_recovery_area/yoon/control02.ctl
Change database ID of database YOON? (Y/[N]) => y
Proceeding with operation
Changing database ID from 675362528 to 678297407
Control File /u01/oracle/oradata/yoon/control01.ctl - modified
Control File /u01/oracle/fast_recovery_area/yoon/control02.ctl - modified
Datafile /u01/oracle/oradata/yoon/system01.db - dbid changed
Datafile /u01/oracle/oradata/yoon/sysaux01.db - dbid changed
Datafile /u01/oracle/oradata/yoon/undotbs01.db - dbid changed
Datafile /u01/oracle/oradata/yoon/users01.db - dbid changed
Datafile /u01/oracle/oradata/yoon/temp01.db - dbid changed
Control File /u01/oracle/oradata/yoon/control01.ctl - dbid changed
Control File /u01/oracle/fast_recovery_area/yoon/control02.ctl - dbid changed
Instance shut down
Database ID for database YOON changed to 678297407.
All previous backups and archived redo logs for this database are unusable.
Database is not aware of previous backups and archived logs in Recovery Area.
Database has been shutdown, open database with RESETLOGS option.
Succesfully changed database ID.
DBNEWID - Completed succesfully.
[oracle@yoon dbs]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Tue Sep 17 14:58:01 2013
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
Database mounted.
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
SQL>
SQL> alter database open resetlogs;
Database altered.
SQL>
SQL> select name,dbid from v$database;
NAME DBID
--------------------------- ----------
YOON 678297407
SQL>
13、修改DB_NAME
[oracle@yoon ~]$ rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Tue Sep 17 15:01:06 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: YOON (DBID=678297407)
RMAN> shutdown immediate
using target database control file instead of recovery catalog
database closed
database dismounted
Oracle instance shut down
RMAN> startup mount
connected to target database (not started)
Oracle instance started
database mounted
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
RMAN>
[oracle@yoon ~]$ nid target=sys/oracle dbname=leonardo
DBNEWID: Release 11.2.0.3.0 - Production on Tue Sep 17 15:01:55 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to database YOON (DBID=678297407)
Connected to server version 11.2.0
Control Files in database:
/u01/oracle/oradata/yoon/control01.ctl
/u01/oracle/fast_recovery_area/yoon/control02.ctl
Change database ID and database name YOON to LEONARDO? (Y/[N]) => y
Proceeding with operation
Changing database ID from 678297407 to 4108249507
Changing database name from YOON to LEONARDO
Control File /u01/oracle/oradata/yoon/control01.ctl - modified
Control File /u01/oracle/fast_recovery_area/yoon/control02.ctl - modified
Datafile /u01/oracle/oradata/yoon/system01.db - dbid changed, wrote new name
Datafile /u01/oracle/oradata/yoon/sysaux01.db - dbid changed, wrote new name
Datafile /u01/oracle/oradata/yoon/undotbs01.db - dbid changed, wrote new name
Datafile /u01/oracle/oradata/yoon/users01.db - dbid changed, wrote new name
Datafile /u01/oracle/oradata/yoon/temp01.db - dbid changed, wrote new name
Control File /u01/oracle/oradata/yoon/control01.ctl - dbid changed, wrote new name
Control File /u01/oracle/fast_recovery_area/yoon/control02.ctl - dbid changed, wrote new name
Instance shut down
Database name changed to LEONARDO.
Modify parameter file and generate a new password file before restarting.
Database ID for database LEONARDO changed to 4108249507.
All previous backups and archived redo logs for this database are unusable.
Database is not aware of previous backups and archived logs in Recovery Area.
Database has been shutdown, open database with RESETLOGS option.
Succesfully changed database name and ID.
DBNEWID - Completed succesfully.
[oracle@yoon ~]$
SQL> select name,dbid from v$database;
NAME DBID
--------------------------- ----------
LEONARDO 4108249507
SQL>
RMAN - 备份异机恢复的更多相关文章
- RMAN 备份异机恢复 并创建新DBID
测试平台信息: Oracle:11gR2 操作系统:Redhat 5.5 Target DB:dave 几点说明: (1)RMAN 异机恢复的时候,db_name必须相同. 如果说要想改成其他的实 ...
- 使用rman备份异机恢复数据库
一.RMAN备份源库注意点: 最好保留rman备份日志 $rman target / log=backup.log RMAN>run { allocate channel t1 type dis ...
- Rman备份异机恢复
最后更新时间:2018/12/29 前置条件 已准备一台安装好Centos6+oracle11gr2 软件的服务器; 只安装了 oracle 数据库软件,需要手工创建以下目录: #环境变量 expor ...
- RAC数据库的RMAN备份异机恢复到单节点数据库
1.首先在rac环境用rman备份数据库.[oracle@rac1 admin]$ rman target /run{allocate channel c1 device type disk conn ...
- Hyper-V安装Oracle Linux6_4 Oracle db 12c并使用rman做异机恢复
本文记录在Windows Server 2012 R2上安装Oracle Enterprise Linux 6.4以及使用RMAN进行进行异机恢复的过程. Windows服务器增加Hyper-V功能 ...
- Oracle之使用rman进行异机恢复测试记录
本次测试目的是从生产数据库导出rman备份然后在测试数据库恢复 1,拷贝备份至相应目录 2,进入rman rman target \ 3,关闭数据库 shutdown 4,以nomount模式启动数据 ...
- rman全备份异机恢复
一.测试环境 [oracle@localhost ~]$ uname -a Linux localhost.localdomain -.el6.x86_64 # SMP Tue May :: EDT ...
- rman 备份并异机恢复
1.RMAN 备份脚本 RUN { CONFIGURE RETENTION POLICY DAYS; CONFIGURE CONTROLFILE AUTOBACKUP ON; CONFIGURE CO ...
- Oracle 单实例 迁移到 RAC 实例 -- 使用RMAN 异机恢复
Oracle 官网有关单实例迁移到RAC的一个步骤说明: How to Convert 10g Single-Instance database to 10g RAC using Manual Con ...
随机推荐
- 反向生成hbm.xml
选择数据库透视图 打开数据连接 打开刚刚创建的连接,然后打开用户名下的表 这个就是she用户下的表,我们选中要反向生成的表,可以多选,然后点击右键 点击Hibernate Reverse Engine ...
- MyBatis框架
MyBatis是支持普通SQL查询,存储过程和高级映射的优秀持久层框架.MyBatis消除了几乎所有的JDBC代码和参数的手工设置以及对结果集的检索封装.MyBatis可以使用简单的xml或者注解用于 ...
- 操作系统学习笔记 对称多处理(SMP)
SMP:一种通过复用处理器提高程序执行并行性的方式. 根据SMP,计算机系统可以分为以下四类: 单指令单数据流(SISD):一个单处理器执行一个单指令流,对保存在一个存储器中的数据进程进行操作. 单指 ...
- MySQL学习笔记(二)
二.SQL基本知识 SQL 是一种典型的非过程化程序设计语言,这种语言的特点是:只指定哪些数据被操纵,至于对这些数据要执行哪些操作,以及这些操作是如何执行的,则未被指定.非过程化程序设计语言的优点在于 ...
- nc命令学习
监测端口是否存在 nc -z 127.0.0.1 9100 扫描端口 nc -z -v 127.0.0.1 8000 9999 发送http nc www.baidu.com 80 GET / HTT ...
- Java中join的使用
join用于主线程等待子线程运行完毕它的run方法,再继续执行下面的代码. join() = join(0),主线程无限等待子线程执行完毕. join(n milliseconds),主线程只等待n毫 ...
- php-resque学习笔记二(配置)
1:前提 系统:CentOS PHP版本:PHP7 安装目录:/usr/local/php php-resque 安装目录:/home/software/php-resque ...
- %SELECTALL
If you ever need to create a view that selects all fields from a particular record, then you should ...
- 使用nodejs引用socket.io做聊天室
Server: var app = require('http').createServer(handler) , io = require('socket.io').listen(app) , fs ...
- 开篇 hello 内Cool超人
经过一年时间看到asp.net mvc一直被受微软开发团队的注重.与之相比的silverlight我感觉到有点力不从心.除去silverlight第一次运行要安装Runtime不说,产品不可能只运行在 ...