Ask about set until sequence when create new single db from primary backup !
Hi all,
I posted article about Create new single database from standby backup and Shailesh help me solve problems. Now, I want ask that: If I backup primary database use:
backup incremental level 0 format '...' database plus archivelog;
And I use this backup to create new single db, Do I need set until sequence <seq_no> thread <thread_no> in RMAN script, just only (ofcourse, I restored controlfile success):
run{
set newname for datafile 1 to '...';
....
restore database;
switch datafile all;
recover database;
}
rename redo logs success and open database resetlogs !
Some link guide about create new single db and set until seq... So, in my case, Do I need set until sequence ?
0