Creating a copy of an active Oracle database using RMAN
Same as in the previous document, same as with dataguard.
Only the RMAN script is different.
$ rman target sys/manager@ORCL12 nocatalog
RMAN> connect auxiliary sys/manager@copy12
RMAN> RUN{
allocate channel dupli1 type disk;
allocate auxiliary channel1 dupli2 type disk;
duplicate target database to copy12 from active database nofilenamecheck;
}