11g Standby Database creation without a backup
- Posted by Gavin Soorma
- On June 24, 2009
- 0 Comments
11g New Feature – Standby Database creation from active database without having to take a backup ….
Note the command output – APEXDG is created by copying the datafiles directly from an open database APEX without having to restore the backup from tape
RMAN> run {
allocate channel c1 type disk;
allocate auxiliary channel c2 type disk;
duplicate target database for standby from active database
dorecover
nofilenamecheck;
}
0 Comments