You are on page 1of 39

Introduction

Purpose
This document outlines the procedure to clone an Oracle 10g RAC database using the Oracle RMAN DUPLICATE DATABASE feature.

Scope
Although the document is specific to illustrating the clone procedure using the example of SOURCEC3 as the source database and TARGETC3 as the target database, the same procedure can be used for performing a clone of any of the RAC databases.

Assumptions and Prerequisites


The following assumptions are made in this document.


Note:

A valid RMAN backup of the source database and archive log files exists. This includes the backup of the controlfile as well. The same directory structure exists on target server as compared to source server where the RMAN backupsets are located. Source and target database have the same SYS password

If the source and target database SYS passwords are different, we need to do either a) Make a copy of the target database existing password file and copy the password file from the $ORACLE_HOME/dbs location on source database server to same location on the target database server. b) Make a copy of the target database existing password file and recreate using the orapwd command, but using the SYS password of the source database

Reference Documents
Metalink Note 461479.1 Oracle DBA and RAC DBA Expert

RMAN Duplicate Database From RAC ASM To RAC ASM http://www.oracleracexpert.com/2009/12/duplicate-rac-databaseusing-rman.html

Prepare the source and target databases for the clone process

Prepare the source database to enable auxiliary connection to the target database Update tnsnames.ora on the source database server
Create a TNS Alias for the auxiliary connection on the source database $ORACLE_HOME/network/admin/tnsnames.ora TARGETC3 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = node1-vip.mydomain)(PORT = 2098)) ) (CONNECT_DATA = (SERVICE_NAME = TARGETC3.mydomain) ) )

Prepare the target database to allow auxiliary connection from the source database Add a static entry in the listener.ora of the target database
server
The GLOBAL_DBNAME entry will be used to reference the static service_name in the listener. Add a static entry for the auxiliary connection in the target database $ORACLE_HOME/network/admin/listener.ora (SID_DESC = (GLOBAL_DBNAME =TARGETC3.mydomain)

(ORACLE_HOME =/node2/oracle/targetc3 ) (SID_NAME = TARGETC31) )

Reload the listener


$> lsnrctl reload LISTENER_TARGETC3_NODE1 LSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Production on 27-MAR-2012 13:14:23 Copyright (c) 1991, 2007, Oracle. All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=node1vip.mydomain)(PORT=2098)(IP=FIRST))) The command completed successfully

Identify the Archive Log Sequence until which Recovery will be performed
We need to identify the archive log sequence number which we will use in the DUPLICATE DATABASE command. RMAN will perform recovery of the database until the log sequence number that we need to determine. Run the RMAN command LIST BACKUP OF ARCHIVELOG. Note the last or latest archive log backup for each thread. Then among the two archive log sequence numbers, identify the one which has the lower NEXT_SCN number. That will be the archive log sequence that we need to make a note of. Remember, we need to add 1 to this number which is then used in the SET UNTIL SEQUENCE clause of the DUPLICATE DATABASE command. For example, we see that for thread 1, the most recent archive log backup available belongs to log sequence number 63643 while for thread 2 the most recent archive log backup available belongs to log sequence number 62635. Comparing, the NEXT_SCN value for both those sequence numbers, we can see that for sequence 63643, the NEXT_SCN value is lower (7367465329753 compared with 7367465329755). Thrd 1 1 1 1 2 62632 7367465305151 28-MAR-12 7367465312995 28-MAR-12 63640 7367465305170 28-MAR-12 7367465313001 28-MAR-12 63641 7367465313001 28-MAR-12 7367465318557 28-MAR-12 63642 7367465318557 28-MAR-12 7367465325967 28-MAR-12 63643 7367465325967 28-MAR-12 7367465329753 28-MAR-12 Seq Low SCN Low Time Next SCN Next Time

2 2 2

62633 7367465312995 28-MAR-12 7367465318549 28-MAR-12 62634 7367465318549 28-MAR-12 7367465325955 28-MAR-12 62635 7367465325955 28-MAR-12 7367465329755 28-MAR-12

So in the RMAN DUPLICATE DATABASE command , we will use : SET UNTIL SEQUENCE 63644 THREAD 1

Create the Single-Instance init.ora parameter file


The database is first restored as a single-instance database and then we convert the single-instance database to a cluster database. It should be noted that we cannot perform a direct RAC database to RAC database duplicate operation, but we can clone a RAC database to a single-instance database.

Backup the existing init.ora parameter file


$ mv initTARGETC31.ora initTARGETC31.ora.orig

Create a new init.ora file based on the spfile


We will later remove all the RAC related parameters from the init.ora file which we will use to bring up a single-instance database. SQL> create pfile from spfile; File created.

Stop Collaboration Suite


At this stage, we will first stop Oracle Collaboration Suite processes using the standard operating procedures. The opmnctl command can be used for this purpose.

Shutdown the target database


After it has been confirmed that the Collaboration Suite Middle Tier processes have been stopped, we need to then proceed with the shutdown of the C3 Oracle database on the target server $> srvctl stop database -d TARGETC3 $> srvctl status database -d TARGETC3 Instance TARGETC31 is not running on node node1 Instance TARGETC32 is not running on node node2

Prepare the (single-instance) target database init.ora file


We now have to remove all the RAC related entries from the parameter file. We also removed the local_listener parameter from the init.ora file as we had received an error when the instance started related to the local_listener parameter.

Remove the following entries *.cluster_database=TRUE TARGETC31.instance_number=1 TARGETC32.instance_number=2 TARGETC31.local_listener='LISTENER_TARGETC31' TARGETC32.local_listener='LISTENER_TARGETC32' TARGETC31.thread=1 TARGETC32.thread=2 TARGETC31.undo_tablespace='UNDOTBS1' TARGETC32.undo_tablespace='UNDOTBS2' *.local_listener='LISTENER_TARGETC3' Add the following entries *.db_file_name_convert='/node1/oradata/SOURCEC3/','/shared_disk/oradata/TARGETC3/' *.log_file_name_convert='/node1/oradata/SOURCEC3/','/shared_disk/oradata/TARGETC3/' *.undo_tablespace='UNDOTBS1 _no_recovery_through_resetlogs=TRUE

Note: The hidden parameter _no_recovery_through_resetlogs has been set in order to avoid 'Internal Bug 4355382 ORA-38856: FAILED TO OPEN DATABASE WITH RESETLOGS WHEN USING RAC BACKUP.

Clean up the target database


On target database server, remove all the database files from the appropriate location. Important: Verify that the directory location from where the files are being deleted is the right one. $> pwd /shared_disk/oradata/TARGETC3 $> hostname node1.mydomain $> rm *.dbf $> rm *.ctl $> rm *.log

On source database server, check that the required RMAN backups exist and are current
Execute the following RMAN commands to determine the name and location of the backupsets from the most recent database backup. RMAN> LIST BACKUP OF DATABASE; RMAN> LIST BACKUP OF ARCHIVELOG ALL RMAN> LIST BACKUP OF CONTROLFILE;

Once the backupsets have been identified, confirm at the O/S level that all the backups are physically present in the appropriate location.
$> ls -l /node1/backup/SOURCEC3/backupsets/ total 1324576 -rw-r----- 1 ornode2 dba 38899712 Mar 27 14:12 SOURCEC3_ArchLog_t778994668_s7054_p1 -rw-r----- 1 ornode2 dba 43043840 Mar 27 14:12 SOURCEC3_ArchLog_t778994668_s7055_p1 -rw-r----- 1 ornode2 dba 2688512 Mar 27 14:12 SOURCEC3_ArchLog_t778994699_s7056_p1 -rw-r----- 1 ornode2 dba 427638784 Mar 27 14:12 SOURCEC3_DataFile_t778994414_s7052_p1 -rw-r----- 1 ornode2 dba 165797888 Mar 27 14:12 SOURCEC3_DataFile_t778994416_s7053_p1 $> ls -l /node1/backup/SOURCEC3/controlfiles total 90520 -rw-r----1 ornode2 dba 46333952 Mar 27 14:14 c-2044054386-20120327-00

Perform the database clone using the RMAN DUPLICATE database command Startup the target instance in NOMOUNT mode
Startup the target database instance in nomount state. Note that we are starting up the database initially in single-instance mode and this command needs to be executed only on one of the nodes in the RAC cluster. SQL> STARTUP NOMOUNT pfile=initTARGETC3.ora;

On Source database server, run the script which will execute


the RMAN DUPLICATE command.
We create an Unix shell script duplicatedb.sh which will establish the auxiliary database connection and execute the RMAN commands required to duplicate the database. These are the contents of the Unix shell script duplicatedb.sh rman target / auxiliary sys/syspwd@targetc3 <<EOF run { allocate channel c1 type disk; allocate auxiliary channel c2 type disk format '/node1/backup/SOURCEC3/backupsets/%U'; set until sequence 63644 thread 1; duplicate target database to targetc3; } EOF

syspwd: This is the SYS password in the target database. As mentioned earlier, the SYS password in both the source as well as target database needs to be the same. targetc3: This is the tnsnames.ora alias which we had created earlier to connect to the auxiliary instance. 63634: This is the log sequence number we had derived earlier by examining the backup of the archive log files.

Execute the script to perform the duplicate

./duplicatedb.sh > duplicatedb.log

Monitor the progress of the RMAN restore and recover operation

From another session we can monitor the progress of the DUPLICATE database operation by executing the command: tail -f duplicatedb.log The output of the duplicatedb.log can be viewed in the APPENDIX (A) section of this document.

Convert the database to a RAC database


Create additional online redo log thread

Identify the number of size of online redo log files belonging


to thread 1
Identify the current online redo log files and their size. We need to create another thread of redo log files with the same size and number as currently exist. SQL> select group#,thread#,bytes/1048576 from v$log; GROUP# 1 2 3 THREAD# BYTES/1048576 1 1 1 10 10 10 ---------- ---------- -------------

SQL> select member from v$logfile; MEMBER -------------------------------------------------------------------------------/shared_disk/oradata/TARGETC3/redo03.log /shared_disk/oradata/TARGETC3/redo02.log /shared_disk/oradata/TARGETC3/redo01.log

Add additional online redo logs to thread 2 and enable the


thread as public
SQL> alter database add logfile thread 2 group 4 2 '/shared_disk/oradata/TARGETC3/redo04.log' size 10m; Database altered. SQL> alter database add logfile thread 2 group 5 2 '/shared_disk/oradata/TARGETC3/redo05.log' size 10m; Database altered.

SQL> alter database add logfile thread 2 group 6 2 '/shared_disk/oradata/TARGETC3/redo06.log' size 10m; Database altered. SQL> select group#,thread#,bytes/1048576 from v$log; GROUP# THREAD# BYTES/1048576

---------- ---------- ------------1 2 3 4 5 6 1 1 1 2 2 2 10 10 10 10 10 10

6 rows selected. SQL> alter database enable public thread 2; Database altered.

Shutdown the database and restart it with the original parameter file.
We now shutdown the single-instance database and start it up using the original database parameter file. The database is now RAC enabled. SQL> shutdown immediate; Note that now the init.ora parameter file points to the SPFILE which is located on the shared disks and which contains all the RAC related database parameters. $> mv initTARGETC31.ora initTARGETC31.ora.nonRAC $> mv initTARGETC31.ora.orig initTARGETC31.ora $> cat initTARGETC31.ora spfile=/sharedvol/admin/TARGETC3/spfileTARGETC3.ora $> srvctl start database -d TARGETC3

Perform post-clone tasks


Verify the database has been converted to a RAC enabled database
Now start the RAC database using srvctl and confirm that the CLUSTER_DATABASE parameter is TRUE and that both the instances are running on the appropriate nodes of the cluster. $> srvctl status database -d TARGETC3 Instance TARGETC31 is running on node node1 Instance TARGETC32 is running on node node2 SQL> show parameter cluster_database NAME TYPE VALUE ------------------------------------ ---------------------------------------cluster_database cluster_database_instances boolean integer TRUE 2

Start Collaboration Suite using standard operating procedures


After the C3 database has been restarted, we need to start the Collaboration Suite middle-tier and the listener using standard operating procedures.

APPENDIX A
duplicatedb.log output
Recovery Manager: Release 10.2.0.4.0 - Production on Wed Mar 28 13:09:20 2012 Copyright (c) 1982, 2007, Oracle. All rights reserved.

connected to target database: SOURCEC3 (DBID=2044054386) connected to auxiliary database: TARGETC3 (not mounted) RMAN> 2> 3> 4> 5> 6> 7> using target database control file instead of recovery catalog allocated channel: c1 channel c1: sid=289 instance=SOURCEC31 devtype=DISK allocated channel: c2 channel c2: sid=537 devtype=DISK executing command: SET until clause Starting Duplicate Db at 28-MAR-12 contents of Memory Script: { set until scn 7367465329753; set newname for datafile 1 to "/shared_disk/oradata/TARGETC3/system01.dbf"; set newname for datafile 2 to "/shared_disk/oradata/TARGETC3/undotbs1.dbf"; set newname for datafile 3 to "/shared_disk/oradata/TARGETC3/sysaux01.dbf"; set newname for datafile 4 to "/shared_disk/oradata/TARGETC3/users01.dbf"; set newname for datafile 5 to "/shared_disk/oradata/TARGETC3/portal.dbf"; set newname for datafile 6 to "/shared_disk/oradata/TARGETC3/ptldoc.dbf"; set newname for datafile 7 to "/shared_disk/oradata/TARGETC3/ptlidx.dbf"; set newname for datafile 8 to "/shared_disk/oradata/TARGETC3/ptllog.dbf"; set newname for datafile 9 to "/shared_disk/oradata/TARGETC3/ias_meta01.dbf"; set newname for datafile 10 to "/shared_disk/oradata/TARGETC3/discopltm1.dbf"; set newname for datafile 11 to "/shared_disk/oradata/TARGETC3/discopltc1.dbf"; set newname for datafile 12 to "/shared_disk/oradata/TARGETC3/dcm.dbf"; set newname for datafile 13 to

"/shared_disk/oradata/TARGETC3/oss_sys01.dbf"; set newname for datafile 14 to "/shared_disk/oradata/TARGETC3/wcrsys01.dbf"; set newname for datafile 15 to "/shared_disk/oradata/TARGETC3/b2b_rt.dbf"; set newname for datafile 16 to "/shared_disk/oradata/TARGETC3/b2b_dt.dbf"; set newname for datafile 17 to "/shared_disk/oradata/TARGETC3/b2b_idx.dbf"; set newname for datafile 18 to "/shared_disk/oradata/TARGETC3/b2b_lob.dbf"; set newname for datafile 19 to "/shared_disk/oradata/TARGETC3/orabpel.dbf"; set newname for datafile 20 to "/shared_disk/oradata/TARGETC3/bam.dbf"; set newname for datafile 21 to "/shared_disk/oradata/TARGETC3/oca.dbf"; set newname for datafile 22 to "/shared_disk/oradata/TARGETC3/uddisys01.dbf"; set newname for datafile 23 to "/shared_disk/oradata/TARGETC3/attrs1_oid.dbf"; set newname for datafile 24 to "/shared_disk/oradata/TARGETC3/battrs1_oid.dbf"; set newname for datafile 25 to "/shared_disk/oradata/TARGETC3/gcats1_oid.dbf"; set newname for datafile 26 to "/shared_disk/oradata/TARGETC3/gdefault1_oid.dbf"; set newname for datafile 27 to "/shared_disk/oradata/TARGETC3/svrmg1_oid.dbf"; set newname for datafile 28 to "/shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf"; set newname for datafile 29 to "/shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf"; set newname for datafile 30 to "/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf"; set newname for datafile 31 to "/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf"; set newname for datafile 32 to "/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf"; set newname for datafile 33 to "/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf"; set newname for datafile 34 to "/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf"; set newname for datafile 35 to "/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf"; set newname for datafile 36 to "/shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf"; set newname for datafile 37 to "/shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf"; set newname for datafile 38 to "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf"; set newname for datafile 39 to "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf"; set newname for datafile 40 to "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf"; set newname for datafile 41 to

"/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf"; set newname for datafile 42 to "/shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf"; set newname for datafile 43 to "/shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf"; set newname for datafile 44 to "/shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf"; set newname for datafile 45 to "/shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf"; set newname for datafile 46 to "/shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf"; set newname for datafile 47 to "/shared_disk/oradata/TARGETC3/esbigtbl.dbf"; set newname for datafile 48 to "/shared_disk/oradata/TARGETC3/esfreqidx.dbf"; set newname for datafile 49 to "/shared_disk/oradata/TARGETC3/esfreqtbl.dbf"; set newname for datafile 50 to "/shared_disk/oradata/TARGETC3/esinfreqidx.dbf"; set newname for datafile 51 to "/shared_disk/oradata/TARGETC3/eslmmr.dbf"; set newname for datafile 52 to "/shared_disk/oradata/TARGETC3/esnews.dbf"; set newname for datafile 53 to "/shared_disk/oradata/TARGETC3/esoratext.dbf"; set newname for datafile 54 to "/shared_disk/oradata/TARGETC3/esperftbl.dbf"; set newname for datafile 55 to "/shared_disk/oradata/TARGETC3/essmltbl.dbf"; set newname for datafile 56 to "/shared_disk/oradata/TARGETC3/esterstore.dbf"; set newname for datafile 57 to "/shared_disk/oradata/TARGETC3/umtbl.dbf"; set newname for datafile 58 to "/shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf"; set newname for datafile 59 to "/shared_disk/oradata/TARGETC3/ic_system01.dbf"; set newname for datafile 60 to "/shared_disk/oradata/TARGETC3/ic_metric01.dbf"; set newname for datafile 61 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf"; set newname for datafile 62 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf"; set newname for datafile 63 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf"; set newname for datafile 64 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf"; set newname for datafile 65 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf"; set newname for datafile 66 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf"; set newname for datafile 67 to "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf"; set newname for datafile 68 to "/shared_disk/oradata/TARGETC3/xxdbta_data.dbf"; set newname for datafile 69 to

} executing Memory Script

"/shared_disk/oradata/TARGETC3/xxdbta_idx.dbf"; set newname for datafile 70 to "/shared_disk/oradata/TARGETC3/undotbs2.dbf"; restore check readonly clone database ;

executing command: SET until clause executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME

executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME

executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME Starting restore at 28-MAR-12 channel c2: starting datafile backupset restore channel c2: specifying datafile(s) to restore from backup set restoring datafile 00002 to /shared_disk/oradata/TARGETC3/undotbs1.dbf restoring datafile 00003 to /shared_disk/oradata/TARGETC3/sysaux01.dbf restoring datafile 00005 to /shared_disk/oradata/TARGETC3/portal.dbf restoring datafile 00007 to /shared_disk/oradata/TARGETC3/ptlidx.dbf restoring datafile 00008 to /shared_disk/oradata/TARGETC3/ptllog.dbf restoring datafile 00010 to /shared_disk/oradata/TARGETC3/discopltm1.dbf restoring datafile 00011 to /shared_disk/oradata/TARGETC3/discopltc1.dbf

restoring datafile 00013 to /shared_disk/oradata/TARGETC3/oss_sys01.dbf restoring datafile 00015 to /shared_disk/oradata/TARGETC3/b2b_rt.dbf restoring datafile 00016 to /shared_disk/oradata/TARGETC3/b2b_dt.dbf restoring datafile 00017 to /shared_disk/oradata/TARGETC3/b2b_idx.dbf restoring datafile 00019 to /shared_disk/oradata/TARGETC3/orabpel.dbf restoring datafile 00020 to /shared_disk/oradata/TARGETC3/bam.dbf restoring datafile 00021 to /shared_disk/oradata/TARGETC3/oca.dbf restoring datafile 00023 to /shared_disk/oradata/TARGETC3/attrs1_oid.dbf restoring datafile 00025 to /shared_disk/oradata/TARGETC3/gcats1_oid.dbf restoring datafile 00027 to /shared_disk/oradata/TARGETC3/svrmg1_oid.dbf restoring datafile 00028 to /shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf restoring datafile 00034 to /shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf restoring datafile 00039 to /shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf restoring datafile 00041 to /shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf restoring datafile 00042 to /shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf restoring datafile 00047 to /shared_disk/oradata/TARGETC3/esbigtbl.dbf restoring datafile 00051 to /shared_disk/oradata/TARGETC3/eslmmr.dbf restoring datafile 00052 to /shared_disk/oradata/TARGETC3/esnews.dbf restoring datafile 00053 to /shared_disk/oradata/TARGETC3/esoratext.dbf restoring datafile 00055 to /shared_disk/oradata/TARGETC3/essmltbl.dbf restoring datafile 00059 to /shared_disk/oradata/TARGETC3/ic_system01.dbf restoring datafile 00062 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf restoring datafile 00063 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf restoring datafile 00064 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf restoring datafile 00065 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf restoring datafile 00067 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf restoring datafile 00068 to /shared_disk/oradata/TARGETC3/xxdbta_data.dbf restoring datafile 00069 to /shared_disk/oradata/TARGETC3/xxdbta_idx.dbf channel c2: reading from backup piece /node1/backup/SOURCEC3/backupsets/SOURCEC3_DataFile_t779080813_s7059 _p1 channel c2: restored backup piece 1

piece handle=/node1/backup/SOURCEC3/backupsets/SOURCEC3_DataFile_t77908081 3_s7059_p1 tag=TAG20120328T032010 channel c2: restore complete, elapsed time: 00:04:35 channel c2: starting datafile backupset restore channel c2: specifying datafile(s) to restore from backup set restoring datafile 00001 to /shared_disk/oradata/TARGETC3/system01.dbf restoring datafile 00004 to /shared_disk/oradata/TARGETC3/users01.dbf restoring datafile 00006 to /shared_disk/oradata/TARGETC3/ptldoc.dbf restoring datafile 00009 to /shared_disk/oradata/TARGETC3/ias_meta01.dbf restoring datafile 00012 to /shared_disk/oradata/TARGETC3/dcm.dbf restoring datafile 00014 to /shared_disk/oradata/TARGETC3/wcrsys01.dbf restoring datafile 00018 to /shared_disk/oradata/TARGETC3/b2b_lob.dbf restoring datafile 00022 to /shared_disk/oradata/TARGETC3/uddisys01.dbf restoring datafile 00024 to /shared_disk/oradata/TARGETC3/battrs1_oid.dbf restoring datafile 00026 to /shared_disk/oradata/TARGETC3/gdefault1_oid.dbf restoring datafile 00029 to /shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf restoring datafile 00030 to /shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf restoring datafile 00031 to /shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf restoring datafile 00032 to /shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf restoring datafile 00033 to /shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf restoring datafile 00035 to /shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf restoring datafile 00036 to /shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf restoring datafile 00037 to /shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf restoring datafile 00038 to /shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf restoring datafile 00040 to /shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf restoring datafile 00043 to /shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf restoring datafile 00044 to /shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf restoring datafile 00045 to /shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf restoring datafile 00046 to /shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf restoring datafile 00048 to /shared_disk/oradata/TARGETC3/esfreqidx.dbf restoring datafile 00049 to /shared_disk/oradata/TARGETC3/esfreqtbl.dbf

restoring datafile 00050 to /shared_disk/oradata/TARGETC3/esinfreqidx.dbf restoring datafile 00054 to /shared_disk/oradata/TARGETC3/esperftbl.dbf restoring datafile 00056 to /shared_disk/oradata/TARGETC3/esterstore.dbf restoring datafile 00057 to /shared_disk/oradata/TARGETC3/umtbl.dbf restoring datafile 00058 to /shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf restoring datafile 00060 to /shared_disk/oradata/TARGETC3/ic_metric01.dbf restoring datafile 00061 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf restoring datafile 00066 to /shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf restoring datafile 00070 to /shared_disk/oradata/TARGETC3/undotbs2.dbf channel c2: reading from backup piece /node1/backup/SOURCEC3/backupsets/SOURCEC3_DataFile_t779080811_s7058 _p1 channel c2: restored backup piece 1 piece handle=/node1/backup/SOURCEC3/backupsets/SOURCEC3_DataFile_t77908081 1_s7058_p1 tag=TAG20120328T032010 channel c2: restore complete, elapsed time: 00:05:25 Finished restore at 28-MAR-12 sql statement: CREATE CONTROLFILE REUSE SET DATABASE "TARGETC3" RESETLOGS ARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 1816 LOGFILE GROUP 1 ( '/shared_disk/oradata/TARGETC3/redo01.log' ) SIZE 10 M REUSE, GROUP 2 ( '/shared_disk/oradata/TARGETC3/redo02.log' ) SIZE 10 M REUSE, GROUP 3 ( '/shared_disk/oradata/TARGETC3/redo03.log' ) SIZE 10 M REUSE DATAFILE '/shared_disk/oradata/TARGETC3/system01.dbf' CHARACTER SET WE8ISO8859P1 contents of Memory Script: { switch clone datafile all; } executing Memory Script datafile 2 switched to datafile copy input datafile copy recid=1 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/undotbs1.dbf datafile 3 switched to datafile copy

input datafile copy recid=2 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/sysaux01.dbf datafile 4 switched to datafile copy input datafile copy recid=3 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/users01.dbf datafile 5 switched to datafile copy input datafile copy recid=4 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/portal.dbf datafile 6 switched to datafile copy input datafile copy recid=5 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/ptldoc.dbf datafile 7 switched to datafile copy input datafile copy recid=6 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/ptlidx.dbf datafile 8 switched to datafile copy input datafile copy recid=7 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/ptllog.dbf datafile 9 switched to datafile copy input datafile copy recid=8 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/ias_meta01.dbf datafile 10 switched to datafile copy input datafile copy recid=9 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/discopltm1.dbf datafile 11 switched to datafile copy input datafile copy recid=10 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/discopltc1.dbf datafile 12 switched to datafile copy input datafile copy recid=11 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/dcm.dbf datafile 13 switched to datafile copy input datafile copy recid=12 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/oss_sys01.dbf datafile 14 switched to datafile copy input datafile copy recid=13 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/wcrsys01.dbf datafile 15 switched to datafile copy input datafile copy recid=14 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/b2b_rt.dbf datafile 16 switched to datafile copy input datafile copy recid=15 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/b2b_dt.dbf datafile 17 switched to datafile copy input datafile copy recid=16 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/b2b_idx.dbf datafile 18 switched to datafile copy input datafile copy recid=17 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/b2b_lob.dbf datafile 19 switched to datafile copy input datafile copy recid=18 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/orabpel.dbf datafile 20 switched to datafile copy input datafile copy recid=19 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/bam.dbf datafile 21 switched to datafile copy input datafile copy recid=20 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/oca.dbf

datafile 22 switched to datafile copy input datafile copy recid=21 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/uddisys01.dbf datafile 23 switched to datafile copy input datafile copy recid=22 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/attrs1_oid.dbf datafile 24 switched to datafile copy input datafile copy recid=23 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/battrs1_oid.dbf datafile 25 switched to datafile copy input datafile copy recid=24 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/gcats1_oid.dbf datafile 26 switched to datafile copy input datafile copy recid=25 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/gdefault1_oid.dbf datafile 27 switched to datafile copy input datafile copy recid=26 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/svrmg1_oid.dbf datafile 28 switched to datafile copy input datafile copy recid=27 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf datafile 29 switched to datafile copy input datafile copy recid=28 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf datafile 30 switched to datafile copy input datafile copy recid=29 stamp=779117098 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf datafile 31 switched to datafile copy input datafile copy recid=30 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf datafile 32 switched to datafile copy input datafile copy recid=31 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf datafile 33 switched to datafile copy input datafile copy recid=32 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf datafile 34 switched to datafile copy input datafile copy recid=33 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf datafile 35 switched to datafile copy input datafile copy recid=34 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf datafile 36 switched to datafile copy input datafile copy recid=35 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf datafile 37 switched to datafile copy input datafile copy recid=36 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf datafile 38 switched to datafile copy input datafile copy recid=37 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf datafile 39 switched to datafile copy input datafile copy recid=38 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf datafile 40 switched to datafile copy

input datafile copy recid=39 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf datafile 41 switched to datafile copy input datafile copy recid=40 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf datafile 42 switched to datafile copy input datafile copy recid=41 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf datafile 43 switched to datafile copy input datafile copy recid=42 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf datafile 44 switched to datafile copy input datafile copy recid=43 stamp=779117099 filename=/shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf datafile 45 switched to datafile copy input datafile copy recid=44 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf datafile 46 switched to datafile copy input datafile copy recid=45 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf datafile 47 switched to datafile copy input datafile copy recid=46 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esbigtbl.dbf datafile 48 switched to datafile copy input datafile copy recid=47 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esfreqidx.dbf datafile 49 switched to datafile copy input datafile copy recid=48 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esfreqtbl.dbf datafile 50 switched to datafile copy input datafile copy recid=49 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esinfreqidx.dbf datafile 51 switched to datafile copy input datafile copy recid=50 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/eslmmr.dbf datafile 52 switched to datafile copy input datafile copy recid=51 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esnews.dbf datafile 53 switched to datafile copy input datafile copy recid=52 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esoratext.dbf datafile 54 switched to datafile copy input datafile copy recid=53 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esperftbl.dbf datafile 55 switched to datafile copy input datafile copy recid=54 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/essmltbl.dbf datafile 56 switched to datafile copy input datafile copy recid=55 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/esterstore.dbf datafile 57 switched to datafile copy input datafile copy recid=56 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/umtbl.dbf datafile 58 switched to datafile copy input datafile copy recid=57 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf

datafile 59 switched to datafile copy input datafile copy recid=58 stamp=779117100 filename=/shared_disk/oradata/TARGETC3/ic_system01.dbf datafile 60 switched to datafile copy input datafile copy recid=59 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/ic_metric01.dbf datafile 61 switched to datafile copy input datafile copy recid=60 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf datafile 62 switched to datafile copy input datafile copy recid=61 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf datafile 63 switched to datafile copy input datafile copy recid=62 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf datafile 64 switched to datafile copy input datafile copy recid=63 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf datafile 65 switched to datafile copy input datafile copy recid=64 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf datafile 66 switched to datafile copy input datafile copy recid=65 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf datafile 67 switched to datafile copy input datafile copy recid=66 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf datafile 68 switched to datafile copy input datafile copy recid=67 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/xxdbta_data.dbf datafile 69 switched to datafile copy input datafile copy recid=68 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/xxdbta_idx.dbf datafile 70 switched to datafile copy input datafile copy recid=69 stamp=779117101 filename=/shared_disk/oradata/TARGETC3/undotbs2.dbf contents of Memory Script: { set until scn 7367465329753; recover clone database delete archivelog ; } executing Memory Script executing command: SET until clause Starting recover at 28-MAR-12 starting media recovery channel c2: starting archive log restore to default destination channel c2: restoring archive log archive log thread=1 sequence=63643

channel c2: reading from backup piece /node1/backup/SOURCEC3/backupsets/SOURCEC3_ArchLog_t779081055_s7061_ p1 channel c2: restored backup piece 1 piece handle=/node1/backup/SOURCEC3/backupsets/SOURCEC3_ArchLog_t779081055 _s7061_p1 tag=TAG20120328T032408 channel c2: restore complete, elapsed time: 00:00:16 archive log filename=/node2/oracle/targetc3/dbs/arch1_63643_663783603.dbf thread=1 sequence=63643 channel c2: starting archive log restore to default destination channel c2: restoring archive log archive log thread=2 sequence=62635 channel c2: reading from backup piece /node1/backup/SOURCEC3/backupsets/SOURCEC3_ArchLog_t779081082_s7062_ p1 channel c2: restored backup piece 1 piece handle=/node1/backup/SOURCEC3/backupsets/SOURCEC3_ArchLog_t779081082 _s7062_p1 tag=TAG20120328T032408 channel c2: restore complete, elapsed time: 00:00:02 archive log filename=/node2/oracle/targetc3/dbs/arch2_62635_663783603.dbf thread=2 sequence=0 channel clone_default: deleting archive log(s) archive log filename=/node2/oracle/targetc3/dbs/arch1_63643_663783603.dbf recid=1 stamp=779117180 channel clone_default: deleting archive log(s) archive log filename=/node2/oracle/targetc3/dbs/arch2_62635_663783603.dbf recid=2 stamp=779117188 media recovery complete, elapsed time: 00:00:02 Finished recover at 28-MAR-12 contents of Memory Script: { shutdown clone; startup clone nomount ; } executing Memory Script database dismounted Oracle instance shut down connected to auxiliary database (not started) Oracle instance started Total System Global Area Fixed Size Variable Size Database Buffers Redo Buffers 1048576000 bytes 2089376 889196128 150994944 6295552 bytes bytes bytes bytes

sql statement: CREATE CONTROLFILE REUSE SET DATABASE "TARGETC3" RESETLOGS ARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 1816 LOGFILE GROUP 1 ( '/shared_disk/oradata/TARGETC3/redo01.log' ) SIZE 10 M REUSE, GROUP 2 ( '/shared_disk/oradata/TARGETC3/redo02.log' ) SIZE 10 M REUSE, GROUP 3 ( '/shared_disk/oradata/TARGETC3/redo03.log' ) SIZE 10 M REUSE DATAFILE '/shared_disk/oradata/TARGETC3/system01.dbf' CHARACTER SET WE8ISO8859P1 contents of Memory Script: { set newname for tempfile 1 to "/shared_disk/oradata/TARGETC3/temp01.dbf"; set newname for tempfile 2 to "/shared_disk/oradata/TARGETC3/RTC_TEMP.dbf"; set newname for tempfile 3 to "/shared_disk/oradata/TARGETC3/cwsys_temp_tbs.dbf"; set newname for tempfile 4 to "/shared_disk/oradata/TARGETC3/estemp.dbf"; switch clone tempfile all; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/undotbs1.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/sysaux01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/users01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/portal.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ptldoc.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ptlidx.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ptllog.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ias_meta01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/discopltm1.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/discopltc1.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/dcm.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/oss_sys01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/wcrsys01.dbf";

catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/b2b_rt.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/b2b_dt.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/b2b_idx.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/b2b_lob.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/orabpel.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/bam.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/oca.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/uddisys01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/attrs1_oid.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/battrs1_oid.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/gcats1_oid.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/gdefault1_oid.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/svrmg1_oid.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf";

catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esbigtbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esfreqidx.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esfreqtbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esinfreqidx.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/eslmmr.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esnews.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esoratext.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esperftbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/essmltbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/esterstore.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/umtbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ic_system01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/ic_metric01.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/xxdbta_data.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/xxdbta_idx.dbf"; catalog clone datafilecopy "/shared_disk/oradata/TARGETC3/undotbs2.dbf";

switch clone datafile all; } executing Memory Script executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME executing command: SET NEWNAME renamed temporary file 1 to /shared_disk/oradata/TARGETC3/temp01.dbf in control file renamed temporary file 2 to /shared_disk/oradata/TARGETC3/RTC_TEMP.dbf in control file renamed temporary file 3 to /shared_disk/oradata/TARGETC3/cwsys_temp_tbs.dbf in control file renamed temporary file 4 to /shared_disk/oradata/TARGETC3/estemp.dbf in control file cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/undotbs1.dbf recid=1 stamp=779117989 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/sysaux01.dbf recid=2 stamp=779117989 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/users01.dbf recid=3 stamp=779117990 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/portal.dbf recid=4 stamp=779117990 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ptldoc.dbf recid=5 stamp=779117991 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ptlidx.dbf recid=6 stamp=779117991 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ptllog.dbf recid=7 stamp=779117991 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ias_meta01.dbf recid=8 stamp=779117992 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/discopltm1.dbf recid=9 stamp=779117992

cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/discopltc1.dbf recid=10 stamp=779117992 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/dcm.dbf recid=11 stamp=779117993 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/oss_sys01.dbf recid=12 stamp=779117993 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/wcrsys01.dbf recid=13 stamp=779117993 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/b2b_rt.dbf recid=14 stamp=779117994 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/b2b_dt.dbf recid=15 stamp=779117994 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/b2b_idx.dbf recid=16 stamp=779117994 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/b2b_lob.dbf recid=17 stamp=779117995 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/orabpel.dbf recid=18 stamp=779117995 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/bam.dbf recid=19 stamp=779117995 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/oca.dbf recid=20 stamp=779117996 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/uddisys01.dbf recid=21 stamp=779117996 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/attrs1_oid.dbf recid=22 stamp=779117996 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/battrs1_oid.dbf recid=23 stamp=779117997

cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/gcats1_oid.dbf recid=24 stamp=779117997 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/gdefault1_oid.dbf recid=25 stamp=779117997 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/svrmg1_oid.dbf recid=26 stamp=779117998 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf recid=27 stamp=779117998 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf recid=28 stamp=779117998 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf recid=29 stamp=779117998 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf recid=30 stamp=779117999 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf recid=31 stamp=779117999 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf recid=32 stamp=779117999 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf recid=33 stamp=779118000 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf recid=34 stamp=779118000 cataloged datafile copy

datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf recid=35 stamp=779118000 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf recid=36 stamp=779118001 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf recid=37 stamp=779118001 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf recid=38 stamp=779118001 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf recid=39 stamp=779118002 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf recid=40 stamp=779118002 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf recid=41 stamp=779118002 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf recid=42 stamp=779118003 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf recid=43 stamp=779118003 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf recid=44 stamp=779118003 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf recid=45 stamp=779118003 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esbigtbl.dbf recid=46 stamp=779118004

cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esfreqidx.dbf recid=47 stamp=779118004 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esfreqtbl.dbf recid=48 stamp=779118005 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esinfreqidx.dbf recid=49 stamp=779118005 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/eslmmr.dbf recid=50 stamp=779118006 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esnews.dbf recid=51 stamp=779118006 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esoratext.dbf recid=52 stamp=779118006 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esperftbl.dbf recid=53 stamp=779118006 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/essmltbl.dbf recid=54 stamp=779118007 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/esterstore.dbf recid=55 stamp=779118007 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/umtbl.dbf recid=56 stamp=779118007 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf recid=57 stamp=779118008 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ic_system01.dbf recid=58 stamp=779118008 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/ic_metric01.dbf recid=59 stamp=779118008 cataloged datafile copy

datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf recid=60 stamp=779118009 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf recid=61 stamp=779118009 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf recid=62 stamp=779118009 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf recid=63 stamp=779118010 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf recid=64 stamp=779118010 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf recid=65 stamp=779118046 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf recid=66 stamp=779118083 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/xxdbta_data.dbf recid=67 stamp=779118083 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/xxdbta_idx.dbf recid=68 stamp=779118083 cataloged datafile copy datafile copy filename=/shared_disk/oradata/TARGETC3/undotbs2.dbf recid=69 stamp=779118084 datafile 2 switched to datafile copy input datafile copy recid=1 stamp=779117989 filename=/shared_disk/oradata/TARGETC3/undotbs1.dbf datafile 3 switched to datafile copy input datafile copy recid=2 stamp=779117989 filename=/shared_disk/oradata/TARGETC3/sysaux01.dbf datafile 4 switched to datafile copy input datafile copy recid=3 stamp=779117990 filename=/shared_disk/oradata/TARGETC3/users01.dbf datafile 5 switched to datafile copy

input datafile copy recid=4 stamp=779117990 filename=/shared_disk/oradata/TARGETC3/portal.dbf datafile 6 switched to datafile copy input datafile copy recid=5 stamp=779117991 filename=/shared_disk/oradata/TARGETC3/ptldoc.dbf datafile 7 switched to datafile copy input datafile copy recid=6 stamp=779117991 filename=/shared_disk/oradata/TARGETC3/ptlidx.dbf datafile 8 switched to datafile copy input datafile copy recid=7 stamp=779117991 filename=/shared_disk/oradata/TARGETC3/ptllog.dbf datafile 9 switched to datafile copy input datafile copy recid=8 stamp=779117992 filename=/shared_disk/oradata/TARGETC3/ias_meta01.dbf datafile 10 switched to datafile copy input datafile copy recid=9 stamp=779117992 filename=/shared_disk/oradata/TARGETC3/discopltm1.dbf datafile 11 switched to datafile copy input datafile copy recid=10 stamp=779117992 filename=/shared_disk/oradata/TARGETC3/discopltc1.dbf datafile 12 switched to datafile copy input datafile copy recid=11 stamp=779117993 filename=/shared_disk/oradata/TARGETC3/dcm.dbf datafile 13 switched to datafile copy input datafile copy recid=12 stamp=779117993 filename=/shared_disk/oradata/TARGETC3/oss_sys01.dbf datafile 14 switched to datafile copy input datafile copy recid=13 stamp=779117993 filename=/shared_disk/oradata/TARGETC3/wcrsys01.dbf datafile 15 switched to datafile copy input datafile copy recid=14 stamp=779117994 filename=/shared_disk/oradata/TARGETC3/b2b_rt.dbf datafile 16 switched to datafile copy input datafile copy recid=15 stamp=779117994 filename=/shared_disk/oradata/TARGETC3/b2b_dt.dbf datafile 17 switched to datafile copy input datafile copy recid=16 stamp=779117994 filename=/shared_disk/oradata/TARGETC3/b2b_idx.dbf datafile 18 switched to datafile copy input datafile copy recid=17 stamp=779117995 filename=/shared_disk/oradata/TARGETC3/b2b_lob.dbf datafile 19 switched to datafile copy input datafile copy recid=18 stamp=779117995 filename=/shared_disk/oradata/TARGETC3/orabpel.dbf datafile 20 switched to datafile copy input datafile copy recid=19 stamp=779117995 filename=/shared_disk/oradata/TARGETC3/bam.dbf datafile 21 switched to datafile copy input datafile copy recid=20 stamp=779117996 filename=/shared_disk/oradata/TARGETC3/oca.dbf datafile 22 switched to datafile copy input datafile copy recid=21 stamp=779117996 filename=/shared_disk/oradata/TARGETC3/uddisys01.dbf datafile 23 switched to datafile copy input datafile copy recid=22 stamp=779117996 filename=/shared_disk/oradata/TARGETC3/attrs1_oid.dbf

datafile 24 switched to datafile copy input datafile copy recid=23 stamp=779117997 filename=/shared_disk/oradata/TARGETC3/battrs1_oid.dbf datafile 25 switched to datafile copy input datafile copy recid=24 stamp=779117997 filename=/shared_disk/oradata/TARGETC3/gcats1_oid.dbf datafile 26 switched to datafile copy input datafile copy recid=25 stamp=779117997 filename=/shared_disk/oradata/TARGETC3/gdefault1_oid.dbf datafile 27 switched to datafile copy input datafile copy recid=26 stamp=779117998 filename=/shared_disk/oradata/TARGETC3/svrmg1_oid.dbf datafile 28 switched to datafile copy input datafile copy recid=27 stamp=779117998 filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_DATA.dbf datafile 29 switched to datafile copy input datafile copy recid=28 stamp=779117998 filename=/shared_disk/oradata/TARGETC3/RTC_LOOKUP_INDEX.dbf datafile 30 switched to datafile copy input datafile copy recid=29 stamp=779117998 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_DATA.dbf datafile 31 switched to datafile copy input datafile copy recid=30 stamp=779117999 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSACTION_INDEX.dbf datafile 32 switched to datafile copy input datafile copy recid=31 stamp=779117999 filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_DATA.dbf datafile 33 switched to datafile copy input datafile copy recid=32 stamp=779117999 filename=/shared_disk/oradata/TARGETC3/RTC_ARCHIVE_INDEX.dbf datafile 34 switched to datafile copy input datafile copy recid=33 stamp=779118000 filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_DATA.dbf datafile 35 switched to datafile copy input datafile copy recid=34 stamp=779118000 filename=/shared_disk/oradata/TARGETC3/RTC_DOCUMENT_INDEX.dbf datafile 36 switched to datafile copy input datafile copy recid=35 stamp=779118000 filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_DATA.dbf datafile 37 switched to datafile copy input datafile copy recid=36 stamp=779118001 filename=/shared_disk/oradata/TARGETC3/RTC_RECORDING_INDEX.dbf datafile 38 switched to datafile copy input datafile copy recid=37 stamp=779118001 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_DATA.dbf datafile 39 switched to datafile copy input datafile copy recid=38 stamp=779118001 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_INDEX.dbf datafile 40 switched to datafile copy input datafile copy recid=39 stamp=779118002 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_DATA.dbf datafile 41 switched to datafile copy input datafile copy recid=40 stamp=779118002 filename=/shared_disk/oradata/TARGETC3/RTC_TRANSIENT_LOB_INDEX.dbf datafile 42 switched to datafile copy

input datafile copy recid=41 stamp=779118002 filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_DATA.dbf datafile 43 switched to datafile copy input datafile copy recid=42 stamp=779118003 filename=/shared_disk/oradata/TARGETC3/RTC_REPORT_INDEX.dbf datafile 44 switched to datafile copy input datafile copy recid=43 stamp=779118003 filename=/shared_disk/oradata/TARGETC3/RTC_IM_DATA.dbf datafile 45 switched to datafile copy input datafile copy recid=44 stamp=779118003 filename=/shared_disk/oradata/TARGETC3/RTC_IM_INDEX.dbf datafile 46 switched to datafile copy input datafile copy recid=45 stamp=779118003 filename=/shared_disk/oradata/TARGETC3/cwsys_main_tbs.dbf datafile 47 switched to datafile copy input datafile copy recid=46 stamp=779118004 filename=/shared_disk/oradata/TARGETC3/esbigtbl.dbf datafile 48 switched to datafile copy input datafile copy recid=47 stamp=779118004 filename=/shared_disk/oradata/TARGETC3/esfreqidx.dbf datafile 49 switched to datafile copy input datafile copy recid=48 stamp=779118005 filename=/shared_disk/oradata/TARGETC3/esfreqtbl.dbf datafile 50 switched to datafile copy input datafile copy recid=49 stamp=779118005 filename=/shared_disk/oradata/TARGETC3/esinfreqidx.dbf datafile 51 switched to datafile copy input datafile copy recid=50 stamp=779118006 filename=/shared_disk/oradata/TARGETC3/eslmmr.dbf datafile 52 switched to datafile copy input datafile copy recid=51 stamp=779118006 filename=/shared_disk/oradata/TARGETC3/esnews.dbf datafile 53 switched to datafile copy input datafile copy recid=52 stamp=779118006 filename=/shared_disk/oradata/TARGETC3/esoratext.dbf datafile 54 switched to datafile copy input datafile copy recid=53 stamp=779118006 filename=/shared_disk/oradata/TARGETC3/esperftbl.dbf datafile 55 switched to datafile copy input datafile copy recid=54 stamp=779118007 filename=/shared_disk/oradata/TARGETC3/essmltbl.dbf datafile 56 switched to datafile copy input datafile copy recid=55 stamp=779118007 filename=/shared_disk/oradata/TARGETC3/esterstore.dbf datafile 57 switched to datafile copy input datafile copy recid=56 stamp=779118007 filename=/shared_disk/oradata/TARGETC3/umtbl.dbf datafile 58 switched to datafile copy input datafile copy recid=57 stamp=779118008 filename=/shared_disk/oradata/TARGETC3/ovfmetricstbl.dbf datafile 59 switched to datafile copy input datafile copy recid=58 stamp=779118008 filename=/shared_disk/oradata/TARGETC3/ic_system01.dbf datafile 60 switched to datafile copy input datafile copy recid=59 stamp=779118008 filename=/shared_disk/oradata/TARGETC3/ic_metric01.dbf

datafile 61 switched to datafile copy input datafile copy recid=60 stamp=779118009 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_MAIN.dbf datafile 62 switched to datafile copy input datafile copy recid=61 stamp=779118009 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_N.dbf datafile 63 switched to datafile copy input datafile copy recid=62 stamp=779118009 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_I.dbf datafile 64 switched to datafile copy input datafile copy recid=63 stamp=779118010 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_LOB_M.dbf datafile 65 switched to datafile copy input datafile copy recid=64 stamp=779118010 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_K.dbf datafile 66 switched to datafile copy input datafile copy recid=65 stamp=779118046 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_I.dbf datafile 67 switched to datafile copy input datafile copy recid=66 stamp=779118083 filename=/shared_disk/oradata/TARGETC3/CONTENT_IFS_CTX_X.dbf datafile 68 switched to datafile copy input datafile copy recid=67 stamp=779118083 filename=/shared_disk/oradata/TARGETC3/xxdbta_data.dbf datafile 69 switched to datafile copy input datafile copy recid=68 stamp=779118083 filename=/shared_disk/oradata/TARGETC3/xxdbta_idx.dbf datafile 70 switched to datafile copy input datafile copy recid=69 stamp=779118084 filename=/shared_disk/oradata/TARGETC3/undotbs2.dbf contents of Memory Script: { Alter clone database open resetlogs; } executing Memory Script database opened Finished Duplicate Db at 28-MAR-12 released channel: c1 RMAN> Recovery Manager complete.

You might also like