#Recovers a ARCHIVELOG database from loss of all redo log files
#In this scenario, the last archived redo log had the sequence# 16


startup mount
run {
allocate channel c1 type disk;
allocate channel c2 type disk;
set until logseq 17 thread 1;
restore database;
recover database;
sql 'alter database open resetlogs';
release channel c1;
release channel c2;
}

Hosted by www.Geocities.ws

1