Restore the archivelog with RMAN Script
run
{
allocate channel c1 type disk ;
set archivelog destination to 'c:\rman\';
restore archivelog from sequence 1020 until sequence 1050;
release channel c1;
}
Restore the archivelog with RMAN Script
run
{
allocate channel c1 type disk ;
set archivelog destination to 'c:\rman\';
restore archivelog from sequence 1020 until sequence 1050;
release channel c1;
}