DBA Hub

📋Steps in this guide1/1

Restore archivelog from rman tape

-----Below  script will restore the archive sequences from 7630 to 7640 to /dumparea location

oracle configurationintermediate
by OracleDba
14 views
1

Restore archivelog from rman tape

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
-----Below  script will restore the archive sequences from 7630 to 7640 to /dumparea location
connect target sys/******@CRM_DB
connect catalog RMAN_tst/*****@catdb
run
{
allocate channel t1 type SBT_TAPE parms ‘ENV=(NSR_SERVER=nwwerpw,NSR_CLIENT=tsc_test01,NSR_DATA_VOLUME_POOL=DD086A1)’connect sys/****@CRM_DB;
set archivelog destination to ‘/dumparea/';
restore archivelog from sequence 7630 until sequence 7640;
release channel t1;
}

Comments (0)

Please to add comments

No comments yet. Be the first to comment!