RMAN duplicate in oracle 11g
Ref: http://oracleinaction.com/duplicate-db-no-db-conn/ duplicate a database from its backups without any connection to the source database. This method can be used if source database is not available . ******************************** source database orcl Duplicate database orclt ******************************** Overview: on the source host - BACKUP DATABASE PLUS ARCHIVELOG AND CONTROLFILE - Copy these backup files to the server where you want to create the duplicate copy. - CREATE PFILE FROM SOURCE DATABASE on the target host - Add a line in the file /etc/oratab to reflect the database instance you are going to copy - create folders - Copy the backup files from the source database - Copy the initialization parameter file from the source database add edit it. - Copy the password file - Startup the target database in nomount mode using modified parameter file - Using RMAN connect to the duplicate database (orclt) a...