February 7, 2008
RAC环境下根据sequence恢复指定日志
作者:eygle
出处:http://blog.eygle.com
RAC环境下,可以通过如下命令来恢复备份集中的归档日志。
1.使用From Until语句
restore archivelog from sequence 69346 until sequence 69397 thread 1;
restore archivelog from sequence 75193 until sequence 75263 thread 2;
2.使用Between语句
restore archivelog sequence between 134 and 136 thread 1;
restore archivelog sequence between 56 and 58 thread 2;
关键是要指明Thread参数。
Posted by eygle at 11:43 PM | Comments (0)
