Here are some simple steps we can take to clone or create a duplicate database from a non-ASM file system to an ASM file system.
1) create a static listener.ora entry on target machine
(SID_DESC =
(GLOBAL_DBNAME = dupdb)
(ORACLE_HOME = /u01/oracle/product/10.2.0/db_1)
(SID_NAME = dupdb)
)
2) add a tns alias on the source machine – this will be used for the auxiliary connection
DUPDBAUX =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = devu009n3)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = dupdb)
)
)
3) Copy the init,ora and password file from source database to $ORACLE_HOME/dbs on target machine
4) Edit the following entries in the init.ora file
In our case we
Continue reading Creating an ASM duplicate database from a non-ASM database


Popular Posts