oracle rman恢复数据文件路径不一致

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle rman恢复数据文件路径不一致相关的知识,希望对你有一定的参考价值。

编辑恢复脚本:
vi recover.txt

run{
allocate channel c1 type sbt;
allocate channel c2 type sbt;
allocate channel c3 type sbt;
allocate channel c4 type sbt;
allocate channel c5 type sbt;
allocate channel c6 type sbt;
allocate channel c7 type sbt;
allocate channel c8 type sbt;
set newname for datafile 1 to ‘/s01/oracle/oradata/prod/system.156.952859152‘;
set newname for datafile 2 to ‘/s01/oracle/oradata/prod/sysaux.157.952859154‘;
set newname for datafile 3 to ‘/s01/oracle/oradata/prod/undotbs1.258.952859453‘;
set newname for datafile 4 to ‘/s01/oracle/oradata/prod/users.159.952855153‘;
set newname for datafile 5 to ‘/s01/oracle/oradata/prod/undotbs2.168.956859305‘;
set newname for datafile 6 to ‘/s01/oracle/oradata/prod/data.176.952859731‘;
set newname for datafile 7 to ‘/s01/oracle/oradata/prod/data.177.952857539‘;
set newname for datafile 8 to ‘/s01/oracle/oradata/prod/data.178.952850557‘;
restore database;
switch datafile all;
recover database;
release channel c1;
release channel c2;
release channel c3;
release channel c4;
release channel c5;
release channel c6;
release channel c7;
release channel c8;
}

放在后台恢复:
nohup rman target / @recover.txt log backup.log &

以上是关于oracle rman恢复数据文件路径不一致的主要内容,如果未能解决你的问题,请参考以下文章

怎么才能把一个数据库的rman备份恢复到同平台上的另一个数据库中

RMAN异机恢复全过程

手工备份恢复oracle数据库

Oracle 11g 中恢复管理器RMAN介绍

oracle丢失归档恢复历史全备(不一致恢复)

Oracle RMAN备份恢复2-案例篇_超越OCP精通Oracle视频教程培训18