Login  Register

Re: Recover database

Posted by ErmanArslansOracleBlog on Jun 05, 2017; 9:16am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Recover-database-tp2763p2773.html

As for your question (rman restore recovery using backups+archivelogs from tape)
Use  'set until sequence' clause to restore the required archive logs and recover the database.

Here is an example run:

run
{
allocate channel t1 type 'sbt_tape';
allocate channel t2 type 'sbt_tape';
allocate channel t3 type 'sbt_tape';
set until sequence 272151; ==> (Max sequence + 1)
recover database;
release channel t1;
release channel t2;
release channel t3;
}