Data Guard
Posted by Roshan on Oct 18, 2016; 3:33pm
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Data-Guard-tp1408.html
Hello Erman,
I hope you are well. When we generate the RMAN script from Networker, it uses the RMAN Duplicate option inside it.
When we do a restore on the stdby DB, we have to do a new backup with RMAN manually on the primary database and do RMAN restore/recover with RMAN.
rman target sys/M@PMTCC01_PROD auxiliary /
startup mount
run {
allocate channel c1 device type disk;
allocate channel c2 device type disk;
allocate channel c3 device type disk;
allocate channel c4 device type disk;
restore database;
recover database;
alter database open resetlogs;
release channel c1;
release channel c2;
release channel c3;
release channel c4;
}
How can I modify Networker to allow us to use RMAN duplicate for restore on standby database when implenting Dataguard(10g)?
Thanks,
Roshan