Duplication took 2 hours for 1.5 TB database
Source database: SOURCE
Source host: source_host
Destination database:DESTINATION
Destination Host: dest_host
STEPS FOR ACTIVE DATABASE DUPLICATION
1. Source database should be in archivelog mode.
SQL> archive log list
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination /opt/app/oracle/product/11.2.0.3/db_1/dbs/arch
Oldest online log sequence 539
Current log sequence 541
SQL> alter system set db_recovery_file_dest_size=200g ;
System altered.
SQL> alter system set db_recovery_file_dest='/remotebu/SOURCE';
System altered.
SQL> shut immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 3.2068E+10 bytes
Fixed Size 2244192 bytes
Variable Size 1.7583E+10 bytes
Database Buffers 1.4428E+10 bytes
Redo Buffers 55267328 bytes
Database mounted.
SQL> alter database archivelog;
Database altered.
SQL> alter database open;
Database altered.
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 539
Next log sequence to archive 541
Current log sequence 541
SQL> alter system switch logfile;
System altered.
2.Create pfile for the new database.
copy the pfile from source to destination and make changes accordingly.
3.Create the password file
orapwd password=password file=/opt/app/oracle/product/11.2.0.3/db_1/dbs/orapwDESTINATION
4.Create the directory for adump, udump, bdump, cdump and audit location.
mkdir -p /opt/app/oracle/diag/rdbms/DESTINATION/DESTINATION/trace
mkdir -p /opt/app/oracle/diag/rdbms/DESTINATION/DESTINATION/cdump
mkdir -p /opt/app/oracle/diag/rdbms/DESTINATION/DESTINATION/trace
mkdir -p /opt/app/oracle/admin/DESTINATION/adump
5.Do static registration of the destination and reload the listener
add the following in listerner.ora file
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = DESTINATION)
(ORACLE_HOME = /opt/app/oracle/product/11.2.0.3/db_1)
(GLOBAL_DBNAME = DESTINATION)
)
)
6.Add TNS entry of BOTH source and destination database in destination and source server
SOURCE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = source_host.enterprisenet.org)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = SOURCE)
)
)
DESTINATION =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dest_host.enterprisenet.org)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = DESTINATION)
(UR=A)
)
)
7.Startup nomount the destination database
SQL> startup nomount;
ORACLE instance started.
Total System Global Area 1.0689E+10 bytes
Fixed Size 2237776 bytes
Variable Size 5603592880 bytes
Database Buffers 5066719232 bytes
Redo Buffers 16924672 bytes
SQL> create spfile from pfile;
File created.
8. set the parameter value for db_create_file_dest,b_create_online_log_dest_n
SQL> alter system set db_create_file_dest='/oradata/DESTINATION';
System altered.
SQL> alter system set db_create_online_log_dest_1 ='/oralog1/DESTINATION';
System altered.
SQL> alter system set db_create_online_log_dest_2='/oralog2/DESTINATION';
System altered.
6. Test that you are able to connect using listener
sqlplus sys/password@DESTINATION
sqlplus sys/password@SOURCE
7. Final commands
=> rman target sys/password@SOURCE auxiliary sys/password@DESTINATION
Recovery Manager: Release 11.2.0.3.0 - Production on Wed Sep 25 04:47:23 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: SOURCE (DBID=703142158)
connected to auxiliary database: DESTINATION (not mounted)
run
{
duplicate target database to DESTINATION
from active database;
}
or we can use
run
{
ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux3 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux4 DEVICE TYPE DISK;
ALLOCATE CHANNEL ch5 DEVICE TYPE DISK;
ALLOCATE CHANNEL ch6 DEVICE TYPE DISK;
ALLOCATE CHANNEL ch7 DEVICE TYPE DISK;
ALLOCATE CHANNEL ch8 DEVICE TYPE DISK;
duplicate target database to RFHK01UA
from active database;
RELEASE CHANNEL aux1;
RELEASE CHANNEL aux2;
RELEASE CHANNEL aux3;
RELEASE CHANNEL aux4;
RELEASE CHANNEL ch5;
RELEASE CHANNEL ch6;
RELEASE CHANNEL ch7;
RELEASE CHANNEL ch8;
}
8.Add /etc/oratab entry for the DESTINATION
ISSUES and things to consider:
1.destination instance should be up to initiate duplicate
2. Atleast one logfile should have been archived in the source to initialize the RMAN duplicate
channel ORA_AUX_DISK_1: SID=854 device type=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 09/25/2013 06:08:55
RMAN-05501: aborting duplication of target database
RMAN-05541: no archived logs found in target database
3.Connect to target using listener only.
bad command
==> rman target sys/password@SOURCE auxiliary sys/password
error
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 09/25/2013 04:41:14
RMAN-05501: aborting duplication of target database
RMAN-06217: not connected to auxiliary database with a net service name
4.database should be running using spfile
Errors in memory script
RMAN-03015: error occurred in stored script Memory Script
RMAN-03009: failure of sql command on clone_default channel at 09/25/2013 10:22:47
RMAN-20000: abnormal termination of job step
RMAN-11003: failure during parse/execution of SQL statement: alter system set db_name = 'RFNZ01QA' comment= 'Reset to original value by RMAN' scope=spfile
RMAN-11001: Oracle Error:
ORA-32001: write to SPFILE requested but no SPFILE is in use
RMAN-03015: error occurred in stored script Memory Script
RMAN-03009: failure of sql command on clone_default channel at 09/25/2013 10:22:41
RMAN-20000: abnormal termination of job step
RMAN-11003: failure during parse/execution of SQL statement: alter system set db_name = 'RFNZ01DV' comment= 'Modified by RMAN duplicate' scope=spfile
RMAN-11001: Oracle Error:
ORA-01565: error in identifying file '/opt/app/oracle/product/11.2.0.3/db_1/dbs/spfileRFNZ01QA.ora'
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 09/25/2013 10:22:47
RMAN-05501: aborting duplication of target database
5.We need to set both auxiliary channel and normal channel
wrong command
run
{
ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux3 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux4 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux5 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux6 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux7 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux8 DEVICE TYPE DISK;
duplicate target database to RFNZ01QA
from active database;
RELEASE CHANNEL aux1;
RELEASE CHANNEL aux2;
RELEASE CHANNEL aux3;
RELEASE CHANNEL aux4;
RELEASE CHANNEL aux5;
RELEASE CHANNEL aux6;
RELEASE CHANNEL aux7;
RELEASE CHANNEL aux8;
}
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 09/25/2013 10:26:29
RMAN-05501: aborting duplication of target database
RMAN-03015: error occurred in stored script Memory Script
RMAN-06034: at least 1 channel must be allocated to execute this command
6.We should have tns entries of both databases on both hosts
SUCCESSFUL LOG:
==> rman target sys/password@SOURCE auxiliary sys/password@DESTINATION
Recovery Manager: Release 11.2.0.3.0 - Production on Wed Sep 25 06:09:45 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: SOURCE (DBID=703142158)
connected to auxiliary database: DESTINATION (not mounted)
RMAN> run
{
duplicate target database to DESTINATION
from active database;
}2> 3> 4> 5>
Starting Duplicate Db at 25-SEP-13
using target database control file instead of recovery catalog
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=854 device type=DISK
contents of Memory Script:
{
sql clone "alter system set db_name =
''SOURCE'' comment=
''Modified by RMAN duplicate'' scope=spfile";
sql clone "alter system set db_unique_name =
''DESTINATION'' comment=
''Modified by RMAN duplicate'' scope=spfile";
shutdown clone immediate;
startup clone force nomount
backup as copy current controlfile auxiliary format '/oradata/DESTINATION/DESTINATION/control01.ctl';
restore clone controlfile to '/oralog1/DESTINATION/DESTINATION/control02.ctl' from
'/oradata/DESTINATION/DESTINATION/control01.ctl';
restore clone controlfile to '/oralog2/DESTINATION/DESTINATION/control03.ctl' from
'/oradata/DESTINATION/DESTINATION/control01.ctl';
alter clone database mount;
}
executing Memory Script
sql statement: alter system set db_name = ''SOURCE'' comment= ''Modified by RMAN duplicate'' scope=spfile
sql statement: alter system set db_unique_name = ''DESTINATION'' comment= ''Modified by RMAN duplicate'' scope=spfile
Oracle instance shut down
Oracle instance started
Total System Global Area 10689474560 bytes
Fixed Size 2237776 bytes
Variable Size 5603592880 bytes
Database Buffers 5066719232 bytes
Redo Buffers 16924672 bytes
Starting backup at 25-SEP-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=1918 device type=DISK
channel ORA_DISK_1: starting datafile copy
copying current control file
output file name=/opt/app/oracle/product/11.2.0.3/db_1/dbs/snapcf_SOURCE.f tag=TAG20130925T061004 RECID=2 STAMP=827043005
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01
Finished backup at 25-SEP-13
Starting restore at 25-SEP-13
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=854 device type=DISK
channel ORA_AUX_DISK_1: copied control file copy
Finished restore at 25-SEP-13
Starting restore at 25-SEP-13
using channel ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: copied control file copy
Finished restore at 25-SEP-13
database mounted
contents of Memory Script:
{
set newname for clone datafile 1 to new;
set newname for clone datafile 2 to new;
set newname for clone datafile 3 to new;
set newname for clone datafile 4 to new;
set newname for clone datafile 5 to new;
set newname for clone datafile 6 to new;
set newname for clone datafile 7 to new;
set newname for clone datafile 8 to new;
set newname for clone datafile 9 to new;
set newname for clone datafile 10 to new;
set newname for clone datafile 11 to new;
set newname for clone datafile 12 to new;
set newname for clone datafile 13 to new;
set newname for clone datafile 14 to new;
set newname for clone datafile 15 to new;
set newname for clone datafile 16 to new;
set newname for clone datafile 17 to new;
set newname for clone datafile 18 to new;
set newname for clone datafile 19 to new;
set newname for clone datafile 20 to new;
set newname for clone datafile 21 to new;
set newname for clone datafile 22 to new;
set newname for clone datafile 23 to new;
set newname for clone datafile 24 to new;
set newname for clone datafile 25 to new;
set newname for clone datafile 26 to new;
set newname for clone datafile 27 to new;
set newname for clone datafile 28 to new;
set newname for clone datafile 29 to new;
set newname for clone datafile 30 to new;
set newname for clone datafile 31 to new;
set newname for clone datafile 32 to new;
set newname for clone datafile 33 to new;
set newname for clone datafile 34 to new;
set newname for clone datafile 35 to new;
set newname for clone datafile 36 to new;
set newname for clone datafile 37 to new;
set newname for clone datafile 38 to new;
set newname for clone datafile 39 to new;
set newname for clone datafile 40 to new;
set newname for clone datafile 41 to new;
set newname for clone datafile 42 to new;
set newname for clone datafile 43 to new;
set newname for clone datafile 44 to new;
set newname for clone datafile 45 to new;
set newname for clone datafile 46 to new;
set newname for clone datafile 47 to new;
set newname for clone datafile 48 to new;
set newname for clone datafile 49 to new;
set newname for clone datafile 50 to new;
set newname for clone datafile 51 to new;
set newname for clone datafile 52 to new;
set newname for clone datafile 53 to new;
set newname for clone datafile 54 to new;
set newname for clone datafile 55 to new;
set newname for clone datafile 56 to new;
set newname for clone datafile 57 to new;
set newname for clone datafile 58 to new;
set newname for clone datafile 59 to new;
set newname for clone datafile 60 to new;
set newname for clone datafile 61 to new;
set newname for clone datafile 62 to new;
set newname for clone datafile 63 to new;
set newname for clone datafile 64 to new;
set newname for clone datafile 65 to new;
set newname for clone datafile 66 to new;
set newname for clone datafile 67 to new;
set newname for clone datafile 68 to new;
set newname for clone datafile 69 to new;
set newname for clone datafile 70 to new;
set newname for clone datafile 71 to new;
set newname for clone datafile 72 to new;
set newname for clone datafile 73 to new;
set newname for clone datafile 74 to new;
set newname for clone datafile 75 to new;
set newname for clone datafile 76 to new;
set newname for clone datafile 77 to new;
set newname for clone datafile 78 to new;
set newname for clone datafile 79 to new;
set newname for clone datafile 80 to new;
set newname for clone datafile 81 to new;
set newname for clone datafile 82 to new;
set newname for clone datafile 83 to new;
set newname for clone datafile 84 to new;
set newname for clone datafile 85 to new;
set newname for clone datafile 86 to new;
set newname for clone datafile 87 to new;
set newname for clone datafile 88 to new;
set newname for clone datafile 89 to new;
set newname for clone datafile 90 to new;
set newname for clone datafile 91 to new;
set newname for clone datafile 92 to new;
set newname for clone datafile 93 to new;
set newname for clone datafile 94 to new;
set newname for clone datafile 95 to new;
set newname for clone datafile 96 to new;
set newname for clone datafile 97 to new;
set newname for clone datafile 98 to new;
set newname for clone datafile 99 to new;
set newname for clone datafile 100 to new;
set newname for clone datafile 101 to new;
set newname for clone datafile 102 to new;
set newname for clone datafile 103 to new;
set newname for clone datafile 104 to new;
set newname for clone datafile 105 to new;
set newname for clone datafile 106 to new;
set newname for clone datafile 107 to new;
set newname for clone datafile 108 to new;
set newname for clone datafile 109 to new;
set newname for clone datafile 110 to new;
set newname for clone datafile 111 to new;
set newname for clone datafile 112 to new;
set newname for clone datafile 113 to new;
set newname for clone datafile 114 to new;
set newname for clone datafile 115 to new;
set newname for clone datafile 116 to new;
set newname for clone datafile 117 to new;
set newname for clone datafile 118 to new;
set newname for clone datafile 119 to new;
set newname for clone datafile 120 to new;
set newname for clone datafile 121 to new;
set newname for clone datafile 122 to new;
set newname for clone datafile 123 to new;
set newname for clone datafile 124 to new;
set newname for clone datafile 125 to new;
set newname for clone datafile 126 to new;
set newname for clone datafile 127 to new;
set newname for clone datafile 128 to new;
set newname for clone datafile 129 to new;
set newname for clone datafile 130 to new;
set newname for clone datafile 131 to new;
set newname for clone datafile 132 to new;
set newname for clone datafile 133 to new;
set newname for clone datafile 134 to new;
backup as copy reuse
datafile 1 auxiliary format new
datafile 2 auxiliary format new
datafile 3 auxiliary format new
datafile 4 auxiliary format new
datafile 5 auxiliary format new
datafile 6 auxiliary format new
datafile 7 auxiliary format new
datafile 8 auxiliary format new
datafile 9 auxiliary format new
datafile 10 auxiliary format new
datafile 11 auxiliary format new
datafile 12 auxiliary format new
datafile 13 auxiliary format new
datafile 14 auxiliary format new
datafile 15 auxiliary format new
datafile 16 auxiliary format new
datafile 17 auxiliary format new
datafile 18 auxiliary format new
datafile 19 auxiliary format new
datafile 20 auxiliary format new
datafile 21 auxiliary format new
datafile 22 auxiliary format new
datafile 23 auxiliary format new
datafile 24 auxiliary format new
datafile 25 auxiliary format new
datafile 26 auxiliary format new
datafile 27 auxiliary format new
datafile 28 auxiliary format new
datafile 29 auxiliary format new
datafile 30 auxiliary format new
datafile 31 auxiliary format new
datafile 32 auxiliary format new
datafile 33 auxiliary format new
datafile 34 auxiliary format new
datafile 35 auxiliary format new
datafile 36 auxiliary format new
datafile 37 auxiliary format new
datafile 38 auxiliary format new
datafile 39 auxiliary format new
datafile 40 auxiliary format new
datafile 41 auxiliary format new
datafile 42 auxiliary format new
datafile 43 auxiliary format new
datafile 44 auxiliary format new
datafile 45 auxiliary format new
datafile 46 auxiliary format new
datafile 47 auxiliary format new
datafile 48 auxiliary format new
datafile 49 auxiliary format new
datafile 50 auxiliary format new
datafile 51 auxiliary format new
datafile 52 auxiliary format new
datafile 53 auxiliary format new
datafile 54 auxiliary format new
datafile 55 auxiliary format new
datafile 56 auxiliary format new
datafile 57 auxiliary format new
datafile 58 auxiliary format new
datafile 59 auxiliary format new
datafile 60 auxiliary format new
datafile 61 auxiliary format new
datafile 62 auxiliary format new
datafile 63 auxiliary format new
datafile 64 auxiliary format new
datafile 65 auxiliary format new
datafile 66 auxiliary format new
datafile 67 auxiliary format new
datafile 68 auxiliary format new
datafile 69 auxiliary format new
datafile 70 auxiliary format new
datafile 71 auxiliary format new
datafile 72 auxiliary format new
datafile 73 auxiliary format new
datafile 74 auxiliary format new
datafile 75 auxiliary format new
datafile 76 auxiliary format new
datafile 77 auxiliary format new
datafile 78 auxiliary format new
datafile 79 auxiliary format new
datafile 80 auxiliary format new
datafile 81 auxiliary format new
datafile 82 auxiliary format new
datafile 83 auxiliary format new
datafile 84 auxiliary format new
datafile 85 auxiliary format new
datafile 86 auxiliary format new
datafile 87 auxiliary format new
datafile 88 auxiliary format new
datafile 89 auxiliary format new
datafile 90 auxiliary format new
datafile 91 auxiliary format new
datafile 92 auxiliary format new
datafile 93 auxiliary format new
datafile 94 auxiliary format new
datafile 95 auxiliary format new
datafile 96 auxiliary format new
datafile 97 auxiliary format new
datafile 98 auxiliary format new
datafile 99 auxiliary format new
datafile 100 auxiliary format new
datafile 101 auxiliary format new
datafile 102 auxiliary format new
datafile 103 auxiliary format new
datafile 104 auxiliary format new
datafile 105 auxiliary format new
datafile 106 auxiliary format new
datafile 107 auxiliary format new
datafile 108 auxiliary format new
datafile 109 auxiliary format new
datafile 110 auxiliary format new
datafile 111 auxiliary format new
datafile 112 auxiliary format new
datafile 113 auxiliary format new
datafile 114 auxiliary format new
datafile 115 auxiliary format new
datafile 116 auxiliary format new
datafile 117 auxiliary format new
datafile 118 auxiliary format new
datafile 119 auxiliary format new
datafile 120 auxiliary format new
datafile 121 auxiliary format new
datafile 122 auxiliary format new
datafile 123 auxiliary format new
datafile 124 auxiliary format new
datafile 125 auxiliary format new
datafile 126 auxiliary format new
datafile 127 auxiliary format new
datafile 128 auxiliary format new
datafile 129 auxiliary format new
datafile 130 auxiliary format new
datafile 131 auxiliary format new
datafile 132 auxiliary format new
datafile 133 auxiliary format new
datafile 134 auxiliary format new
;
sql 'alter system archive log current';
}
executing Memory Script
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
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 backup at 25-SEP-13
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile copy
input datafile file number=00004 name=+DATA/SOURCE/datafile/users.470.824223133
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_users_4boknb68_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:29:30
channel ORA_DISK_1: starting datafile copy
input datafile file number=00003 name=+DATA/SOURCE/datafile/undotbs1.468.824223127
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs1_4cokncti_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:10:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00005 name=+DATA/SOURCE/datafile/acn.472.824225875
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_4dokndh3_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:07:05
channel ORA_DISK_1: starting datafile copy
input datafile file number=00006 name=+DATA/SOURCE/datafile/acn_index.473.824225877
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_inde_4eoknduc_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:04:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00048 name=+DATA/SOURCE/datafile/raw_tabs_index.515.824225923
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_4fokne7j_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:04:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00096 name=+DATA/SOURCE/datafile/sc_12.563.824225973
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_12_4gokneg6_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00008 name=+DATA/SOURCE/datafile/acn_ri_index.475.824225879
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_i_4hoknell_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:03:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00097 name=+DATA/SOURCE/datafile/sc_13.564.824225975
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_13_4ioknero_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00007 name=+DATA/SOURCE/datafile/acn_ri.474.824225877
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_4joknf0t_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:56
channel ORA_DISK_1: starting datafile copy
input datafile file number=00011 name=+DATA/SOURCE/datafile/avg_12.478.824225881
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_12_4koknf6d_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00012 name=+DATA/SOURCE/datafile/avg_13.479.824225883
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_13_4loknfak_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00095 name=+DATA/SOURCE/datafile/sc_11.562.824225973
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_11_4moknfdt_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00016 name=+DATA/SOURCE/datafile/avg_index_12.483.824225887
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4noknfh6_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00076 name=+DATA/SOURCE/datafile/ra_index_12.543.824225953
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4ooknfld_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00061 name=+DATA/SOURCE/datafile/ra_12.528.824225937
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_12_4poknfom_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00111 name=+DATA/SOURCE/datafile/sc_index_13.578.824225989
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4qoknfrb_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00080 name=+DATA/SOURCE/datafile/rrs.547.824225957
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_4roknfub_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00075 name=+DATA/SOURCE/datafile/ra_index_11.542.824225951
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4sokng0e_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:05
channel ORA_DISK_1: starting datafile copy
input datafile file number=00110 name=+DATA/SOURCE/datafile/sc_index_12.577.824225989
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4tokng2f_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:05
channel ORA_DISK_1: starting datafile copy
input datafile file number=00010 name=+DATA/SOURCE/datafile/avg_11.477.824225881
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_11_4uokng4g_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00015 name=+DATA/SOURCE/datafile/avg_index_11.482.824225887
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4vokng67_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00077 name=+DATA/SOURCE/datafile/ra_index_13.544.824225953
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_50okng8s_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:01:05
channel ORA_DISK_1: starting datafile copy
input datafile file number=00060 name=+DATA/SOURCE/datafile/ra_11.527.824225935
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_11_51okngat_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00062 name=+DATA/SOURCE/datafile/ra_13.529.824225937
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_13_52okngcl_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00109 name=+DATA/SOURCE/datafile/sc_index_11.576.824225987
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_53okngec_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:55
channel ORA_DISK_1: starting datafile copy
input datafile file number=00092 name=+DATA/SOURCE/datafile/sc_08.559.824225969
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_08_54okngg3_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00059 name=+DATA/SOURCE/datafile/ra_10.526.824225935
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_10_55oknghg_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00058 name=+DATA/SOURCE/datafile/ra_09.525.824225933
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_09_56okngit_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
channel ORA_DISK_1: starting datafile copy
input datafile file number=00094 name=+DATA/SOURCE/datafile/sc_10.561.824225971
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_10_57okngka_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00091 name=+DATA/SOURCE/datafile/sc_07.558.824225969
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_07_58okngld_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00057 name=+DATA/SOURCE/datafile/ra_08.524.824225931
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_08_59okngmh_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00093 name=+DATA/SOURCE/datafile/sc_09.560.824225971
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_09_5aokngnk_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00090 name=+DATA/SOURCE/datafile/sc_06.557.824225967
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_06_5bokngon_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00117 name=+DATA/SOURCE/datafile/sc_trend_06.584.824225995
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5cokngpg_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00018 name=+DATA/SOURCE/datafile/backup.485.824225889
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_backup_5dokngq9_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00056 name=+DATA/SOURCE/datafile/ra_07.523.824225931
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_07_5eokngr2_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00070 name=+DATA/SOURCE/datafile/ra_index_06.537.824225945
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5fokngrr_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00055 name=+DATA/SOURCE/datafile/ra_06.522.824225929
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_06_5gokngsk_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00116 name=+DATA/SOURCE/datafile/sc_trend_05.583.824225995
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5hokngte_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00017 name=+DATA/SOURCE/datafile/avg_index_13.484.824225889
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_5iokngu7_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
channel ORA_DISK_1: starting datafile copy
input datafile file number=00108 name=+DATA/SOURCE/datafile/sc_index_10.575.824225987
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5jokngva_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
channel ORA_DISK_1: starting datafile copy
input datafile file number=00089 name=+DATA/SOURCE/datafile/sc_05.556.824225967
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_05_5koknh03_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00040 name=+DATA/SOURCE/datafile/intmd.507.824225913
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_5loknh0i_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00074 name=+DATA/SOURCE/datafile/ra_index_10.541.824225951
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5moknh11_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00069 name=+DATA/SOURCE/datafile/ra_index_05.536.824225945
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5noknh1g_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00073 name=+DATA/SOURCE/datafile/ra_index_09.540.824225949
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5ooknh1v_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00088 name=+DATA/SOURCE/datafile/sc_04.555.824225965
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_04_5poknh2e_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00068 name=+DATA/SOURCE/datafile/ra_index_04.535.824225943
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5qoknh2u_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00072 name=+DATA/SOURCE/datafile/ra_index_08.539.824225947
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5roknh3d_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00001 name=+DATA/SOURCE/datafile/system.466.824223125
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_system_5soknh3s_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00107 name=+DATA/SOURCE/datafile/sc_index_09.574.824225985
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5toknh4b_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00054 name=+DATA/SOURCE/datafile/ra_05.521.824225929
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_05_5uoknh4q_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00118 name=+DATA/SOURCE/datafile/sc_trend_07.585.824225997
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5voknh59_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:14
channel ORA_DISK_1: starting datafile copy
input datafile file number=00067 name=+DATA/SOURCE/datafile/ra_index_03.534.824225943
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_60oknh5n_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:19
channel ORA_DISK_1: starting datafile copy
input datafile file number=00115 name=+DATA/SOURCE/datafile/sc_trend_04.582.824225993
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_61oknh6b_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00066 name=+DATA/SOURCE/datafile/ra_index_02.533.824225941
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_62oknh6q_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00065 name=+DATA/SOURCE/datafile/ra_index_01.532.824225941
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_63oknh79_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00042 name=+DATA/SOURCE/datafile/irh_index_tbs.509.824225915
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_inde_64oknh7o_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
channel ORA_DISK_1: starting datafile copy
input datafile file number=00053 name=+DATA/SOURCE/datafile/ra_04.520.824225927
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_04_65oknh87_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00035 name=+DATA/SOURCE/datafile/ca_ex_aem_index_12.502.824225909
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_66oknh8e_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00050 name=+DATA/SOURCE/datafile/ra_01.517.824225925
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_01_67oknh8l_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00051 name=+DATA/SOURCE/datafile/ra_02.518.824225925
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_02_68oknh8s_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00052 name=+DATA/SOURCE/datafile/ra_03.519.824225927
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_03_69oknh93_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00049 name=+DATA/SOURCE/datafile/ra_00.516.824225923
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_00_6aoknh9a_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00064 name=+DATA/SOURCE/datafile/ra_index_00.531.824225939
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6boknh9i_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00071 name=+DATA/SOURCE/datafile/ra_index_07.538.824225947
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6coknh9p_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00026 name=+DATA/SOURCE/datafile/ca_ex_aem_12.493.824225899
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6doknha0_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00043 name=+DATA/SOURCE/datafile/irh_tbs.510.824225917
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_tbs_6eoknha7_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00009 name=+DATA/SOURCE/datafile/avg.476.824225879
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_6foknhae_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00013 name=+DATA/SOURCE/datafile/avg_index.480.824225885
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6goknhah_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00014 name=+DATA/SOURCE/datafile/avg_index_04.481.824225885
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6hoknhao_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00019 name=+DATA/SOURCE/datafile/ca_ex_aem_05.486.824225891
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ioknhar_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00020 name=+DATA/SOURCE/datafile/ca_ex_aem_06.487.824225893
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6joknhb2_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00021 name=+DATA/SOURCE/datafile/ca_ex_aem_07.488.824225893
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6koknhb5_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00022 name=+DATA/SOURCE/datafile/ca_ex_aem_08.489.824225895
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6loknhbc_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00023 name=+DATA/SOURCE/datafile/ca_ex_aem_09.490.824225895
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6moknhbk_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00024 name=+DATA/SOURCE/datafile/ca_ex_aem_10.491.824225897
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6noknhbn_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00025 name=+DATA/SOURCE/datafile/ca_ex_aem_11.492.824225897
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ooknhbu_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00027 name=+DATA/SOURCE/datafile/ca_ex_aem_13.494.824225899
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6poknhc5_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00028 name=+DATA/SOURCE/datafile/ca_ex_aem_index_05.495.824225901
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6qoknhc8_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00029 name=+DATA/SOURCE/datafile/ca_ex_aem_index_06.496.824225903
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6roknhcf_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00030 name=+DATA/SOURCE/datafile/ca_ex_aem_index_07.497.824225903
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6soknhcm_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00031 name=+DATA/SOURCE/datafile/ca_ex_aem_index_08.498.824225905
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6toknhcp_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00032 name=+DATA/SOURCE/datafile/ca_ex_aem_index_09.499.824225905
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6uoknhd0_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00033 name=+DATA/SOURCE/datafile/ca_ex_aem_index_10.500.824225907
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6voknhd3_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00034 name=+DATA/SOURCE/datafile/ca_ex_aem_index_11.501.824225907
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_70oknhda_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:04
channel ORA_DISK_1: starting datafile copy
input datafile file number=00036 name=+DATA/SOURCE/datafile/ca_ex_aem_index_13.503.824225909
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_71oknhde_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00037 name=+DATA/SOURCE/datafile/client_spec_ts.504.824225911
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_client_s_72oknhdl_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00038 name=+DATA/SOURCE/datafile/cs_data.505.824225911
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_data_73oknhds_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00039 name=+DATA/SOURCE/datafile/cs_index.506.824225913
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_index_74oknhe3_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00041 name=+DATA/SOURCE/datafile/intmd_index.508.824225915
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_in_75oknhe6_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00044 name=+DATA/SOURCE/datafile/item.511.824225917
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_item_76oknhed_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00045 name=+DATA/SOURCE/datafile/mbd_raw.512.824225919
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw_77oknhek_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00046 name=+DATA/SOURCE/datafile/mbd_raw_index.513.824225921
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw__78oknhen_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00047 name=+DATA/SOURCE/datafile/raw_tabs.514.824225921
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_79oknheu_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00063 name=+DATA/SOURCE/datafile/ra_99.530.824225939
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_99_7aoknhf1_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00078 name=+DATA/SOURCE/datafile/ra_index_99.545.824225955
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_7boknhf8_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00079 name=+DATA/SOURCE/datafile/ra_test.546.824225955
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_test_7coknhfg_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00081 name=+DATA/SOURCE/datafile/rrs_index.548.824225957
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_inde_7doknhfj_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00082 name=+DATA/SOURCE/datafile/rrs_new.549.824225959
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_new_7eoknhfq_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00083 name=+DATA/SOURCE/datafile/scheduler.550.824225959
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7foknhft_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00084 name=+DATA/SOURCE/datafile/scheduler_index.551.824225961
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7goknhg4_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00085 name=+DATA/SOURCE/datafile/sc_01.552.824225961
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_01_7hoknhg7_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00086 name=+DATA/SOURCE/datafile/sc_02.553.824225963
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_02_7ioknhge_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00087 name=+DATA/SOURCE/datafile/sc_03.554.824225963
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_03_7joknhgh_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00098 name=+DATA/SOURCE/datafile/sc_bandedpackitem_11.565.824225975
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_bande_7koknhgo_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00099 name=+DATA/SOURCE/datafile/sc_index_01.566.824225977
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7loknhgr_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00100 name=+DATA/SOURCE/datafile/sc_index_02.567.824225977
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7moknhh2_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00101 name=+DATA/SOURCE/datafile/sc_index_03.568.824225979
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7noknhh6_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00102 name=+DATA/SOURCE/datafile/sc_index_04.569.824225979
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7ooknhhd_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00103 name=+DATA/SOURCE/datafile/sc_index_05.570.824225981
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7poknhhk_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00104 name=+DATA/SOURCE/datafile/sc_index_06.571.824225981
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7qoknhhn_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00105 name=+DATA/SOURCE/datafile/sc_index_07.572.824225983
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7roknhhu_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00106 name=+DATA/SOURCE/datafile/sc_index_08.573.824225983
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7soknhi1_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00112 name=+DATA/SOURCE/datafile/sc_trend_01.579.824225991
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7toknhi8_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00113 name=+DATA/SOURCE/datafile/sc_trend_02.580.824225991
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7uoknhif_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00114 name=+DATA/SOURCE/datafile/sc_trend_03.581.824225993
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7voknhii_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00119 name=+DATA/SOURCE/datafile/sc_trend_08.586.824225997
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_80oknhip_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00120 name=+DATA/SOURCE/datafile/sc_trend_09.587.824225999
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_81oknhj1_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00121 name=+DATA/SOURCE/datafile/sc_trend_10.588.824225999
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_82oknhj4_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00122 name=+DATA/SOURCE/datafile/sc_trend_11.589.824226001
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_83oknhjb_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00123 name=+DATA/SOURCE/datafile/sc_trend_index_01.590.824226001
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_84oknhje_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00124 name=+DATA/SOURCE/datafile/sc_trend_index_02.591.824226003
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_85oknhjl_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00125 name=+DATA/SOURCE/datafile/sc_trend_index_03.592.824226003
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_86oknhjs_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00126 name=+DATA/SOURCE/datafile/sc_trend_index_04.593.824226005
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_87oknhjv_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00127 name=+DATA/SOURCE/datafile/sc_trend_index_05.594.824226007
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_88oknhk6_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00128 name=+DATA/SOURCE/datafile/sc_trend_index_06.595.824226007
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_89oknhk9_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00129 name=+DATA/SOURCE/datafile/sc_trend_index_07.596.824226009
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8aoknhkh_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00130 name=+DATA/SOURCE/datafile/sc_trend_index_08.597.824226009
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8boknhko_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00131 name=+DATA/SOURCE/datafile/sc_trend_index_09.598.824226011
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8coknhkr_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00132 name=+DATA/SOURCE/datafile/sc_trend_index_10.599.824226011
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8doknhl2_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00133 name=+DATA/SOURCE/datafile/sc_trend_index_11.600.824226013
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8eoknhl9_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting datafile copy
input datafile file number=00134 name=+DATA/SOURCE/datafile/undotbs2.601.824226013
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs2_8foknhlc_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile copy
input datafile file number=00002 name=+DATA/SOURCE/datafile/sysaux.467.824223127
output file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sysaux_8goknhlj_.dbf tag=TAG20130925T061015
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 25-SEP-13
sql statement: alter system archive log current
contents of Memory Script:
{
backup as copy reuse
archivelog like "/remotebu/SOURCE/SOURCE/archivelog/2013_09_25/o1_mf_1_545_945n3tz2_.arc" auxiliary format
"/opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf" ;
catalog clone archivelog "/opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf";
switch clone datafile all;
}
executing Memory Script
Starting backup at 25-SEP-13
using channel ORA_DISK_1
channel ORA_DISK_1: starting archived log copy
input archived log thread=1 sequence=545 RECID=5 STAMP=827049659
output file name=/opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf RECID=0 STAMP=0
channel ORA_DISK_1: archived log copy complete, elapsed time: 00:00:01
Finished backup at 25-SEP-13
cataloged archived log
archived log file name=/opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf RECID=5 STAMP=827049661
datafile 1 switched to datafile copy
input datafile copy RECID=2 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_system_5soknh3s_.dbf
datafile 2 switched to datafile copy
input datafile copy RECID=3 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sysaux_8goknhlj_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=4 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs1_4cokncti_.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=5 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_users_4boknb68_.dbf
datafile 5 switched to datafile copy
input datafile copy RECID=6 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_4dokndh3_.dbf
datafile 6 switched to datafile copy
input datafile copy RECID=7 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_inde_4eoknduc_.dbf
datafile 7 switched to datafile copy
input datafile copy RECID=8 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_4joknf0t_.dbf
datafile 8 switched to datafile copy
input datafile copy RECID=9 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_i_4hoknell_.dbf
datafile 9 switched to datafile copy
input datafile copy RECID=10 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_6foknhae_.dbf
datafile 10 switched to datafile copy
input datafile copy RECID=11 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_11_4uokng4g_.dbf
datafile 11 switched to datafile copy
input datafile copy RECID=12 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_12_4koknf6d_.dbf
datafile 12 switched to datafile copy
input datafile copy RECID=13 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_13_4loknfak_.dbf
datafile 13 switched to datafile copy
input datafile copy RECID=14 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6goknhah_.dbf
datafile 14 switched to datafile copy
input datafile copy RECID=15 STAMP=827049661 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6hoknhao_.dbf
datafile 15 switched to datafile copy
input datafile copy RECID=16 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4vokng67_.dbf
datafile 16 switched to datafile copy
input datafile copy RECID=17 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4noknfh6_.dbf
datafile 17 switched to datafile copy
input datafile copy RECID=18 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_5iokngu7_.dbf
datafile 18 switched to datafile copy
input datafile copy RECID=19 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_backup_5dokngq9_.dbf
datafile 19 switched to datafile copy
input datafile copy RECID=20 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ioknhar_.dbf
datafile 20 switched to datafile copy
input datafile copy RECID=21 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6joknhb2_.dbf
datafile 21 switched to datafile copy
input datafile copy RECID=22 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6koknhb5_.dbf
datafile 22 switched to datafile copy
input datafile copy RECID=23 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6loknhbc_.dbf
datafile 23 switched to datafile copy
input datafile copy RECID=24 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6moknhbk_.dbf
datafile 24 switched to datafile copy
input datafile copy RECID=25 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6noknhbn_.dbf
datafile 25 switched to datafile copy
input datafile copy RECID=26 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ooknhbu_.dbf
datafile 26 switched to datafile copy
input datafile copy RECID=27 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6doknha0_.dbf
datafile 27 switched to datafile copy
input datafile copy RECID=28 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6poknhc5_.dbf
datafile 28 switched to datafile copy
input datafile copy RECID=29 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6qoknhc8_.dbf
datafile 29 switched to datafile copy
input datafile copy RECID=30 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6roknhcf_.dbf
datafile 30 switched to datafile copy
input datafile copy RECID=31 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6soknhcm_.dbf
datafile 31 switched to datafile copy
input datafile copy RECID=32 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6toknhcp_.dbf
datafile 32 switched to datafile copy
input datafile copy RECID=33 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6uoknhd0_.dbf
datafile 33 switched to datafile copy
input datafile copy RECID=34 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6voknhd3_.dbf
datafile 34 switched to datafile copy
input datafile copy RECID=35 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_70oknhda_.dbf
datafile 35 switched to datafile copy
input datafile copy RECID=36 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_66oknh8e_.dbf
datafile 36 switched to datafile copy
input datafile copy RECID=37 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_71oknhde_.dbf
datafile 37 switched to datafile copy
input datafile copy RECID=38 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_client_s_72oknhdl_.dbf
datafile 38 switched to datafile copy
input datafile copy RECID=39 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_data_73oknhds_.dbf
datafile 39 switched to datafile copy
input datafile copy RECID=40 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_index_74oknhe3_.dbf
datafile 40 switched to datafile copy
input datafile copy RECID=41 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_5loknh0i_.dbf
datafile 41 switched to datafile copy
input datafile copy RECID=42 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_in_75oknhe6_.dbf
datafile 42 switched to datafile copy
input datafile copy RECID=43 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_inde_64oknh7o_.dbf
datafile 43 switched to datafile copy
input datafile copy RECID=44 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_tbs_6eoknha7_.dbf
datafile 44 switched to datafile copy
input datafile copy RECID=45 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_item_76oknhed_.dbf
datafile 45 switched to datafile copy
input datafile copy RECID=46 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw_77oknhek_.dbf
datafile 46 switched to datafile copy
input datafile copy RECID=47 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw__78oknhen_.dbf
datafile 47 switched to datafile copy
input datafile copy RECID=48 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_79oknheu_.dbf
datafile 48 switched to datafile copy
input datafile copy RECID=49 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_4fokne7j_.dbf
datafile 49 switched to datafile copy
input datafile copy RECID=50 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_00_6aoknh9a_.dbf
datafile 50 switched to datafile copy
input datafile copy RECID=51 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_01_67oknh8l_.dbf
datafile 51 switched to datafile copy
input datafile copy RECID=52 STAMP=827049662 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_02_68oknh8s_.dbf
datafile 52 switched to datafile copy
input datafile copy RECID=53 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_03_69oknh93_.dbf
datafile 53 switched to datafile copy
input datafile copy RECID=54 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_04_65oknh87_.dbf
datafile 54 switched to datafile copy
input datafile copy RECID=55 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_05_5uoknh4q_.dbf
datafile 55 switched to datafile copy
input datafile copy RECID=56 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_06_5gokngsk_.dbf
datafile 56 switched to datafile copy
input datafile copy RECID=57 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_07_5eokngr2_.dbf
datafile 57 switched to datafile copy
input datafile copy RECID=58 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_08_59okngmh_.dbf
datafile 58 switched to datafile copy
input datafile copy RECID=59 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_09_56okngit_.dbf
datafile 59 switched to datafile copy
input datafile copy RECID=60 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_10_55oknghg_.dbf
datafile 60 switched to datafile copy
input datafile copy RECID=61 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_11_51okngat_.dbf
datafile 61 switched to datafile copy
input datafile copy RECID=62 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_12_4poknfom_.dbf
datafile 62 switched to datafile copy
input datafile copy RECID=63 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_13_52okngcl_.dbf
datafile 63 switched to datafile copy
input datafile copy RECID=64 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_99_7aoknhf1_.dbf
datafile 64 switched to datafile copy
input datafile copy RECID=65 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6boknh9i_.dbf
datafile 65 switched to datafile copy
input datafile copy RECID=66 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_63oknh79_.dbf
datafile 66 switched to datafile copy
input datafile copy RECID=67 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_62oknh6q_.dbf
datafile 67 switched to datafile copy
input datafile copy RECID=68 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_60oknh5n_.dbf
datafile 68 switched to datafile copy
input datafile copy RECID=69 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5qoknh2u_.dbf
datafile 69 switched to datafile copy
input datafile copy RECID=70 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5noknh1g_.dbf
datafile 70 switched to datafile copy
input datafile copy RECID=71 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5fokngrr_.dbf
datafile 71 switched to datafile copy
input datafile copy RECID=72 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6coknh9p_.dbf
datafile 72 switched to datafile copy
input datafile copy RECID=73 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5roknh3d_.dbf
datafile 73 switched to datafile copy
input datafile copy RECID=74 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5ooknh1v_.dbf
datafile 74 switched to datafile copy
input datafile copy RECID=75 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5moknh11_.dbf
datafile 75 switched to datafile copy
input datafile copy RECID=76 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4sokng0e_.dbf
datafile 76 switched to datafile copy
input datafile copy RECID=77 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4ooknfld_.dbf
datafile 77 switched to datafile copy
input datafile copy RECID=78 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_50okng8s_.dbf
datafile 78 switched to datafile copy
input datafile copy RECID=79 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_7boknhf8_.dbf
datafile 79 switched to datafile copy
input datafile copy RECID=80 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_test_7coknhfg_.dbf
datafile 80 switched to datafile copy
input datafile copy RECID=81 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_4roknfub_.dbf
datafile 81 switched to datafile copy
input datafile copy RECID=82 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_inde_7doknhfj_.dbf
datafile 82 switched to datafile copy
input datafile copy RECID=83 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_new_7eoknhfq_.dbf
datafile 83 switched to datafile copy
input datafile copy RECID=84 STAMP=827049663 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7foknhft_.dbf
datafile 84 switched to datafile copy
input datafile copy RECID=85 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7goknhg4_.dbf
datafile 85 switched to datafile copy
input datafile copy RECID=86 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_01_7hoknhg7_.dbf
datafile 86 switched to datafile copy
input datafile copy RECID=87 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_02_7ioknhge_.dbf
datafile 87 switched to datafile copy
input datafile copy RECID=88 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_03_7joknhgh_.dbf
datafile 88 switched to datafile copy
input datafile copy RECID=89 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_04_5poknh2e_.dbf
datafile 89 switched to datafile copy
input datafile copy RECID=90 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_05_5koknh03_.dbf
datafile 90 switched to datafile copy
input datafile copy RECID=91 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_06_5bokngon_.dbf
datafile 91 switched to datafile copy
input datafile copy RECID=92 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_07_58okngld_.dbf
datafile 92 switched to datafile copy
input datafile copy RECID=93 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_08_54okngg3_.dbf
datafile 93 switched to datafile copy
input datafile copy RECID=94 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_09_5aokngnk_.dbf
datafile 94 switched to datafile copy
input datafile copy RECID=95 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_10_57okngka_.dbf
datafile 95 switched to datafile copy
input datafile copy RECID=96 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_11_4moknfdt_.dbf
datafile 96 switched to datafile copy
input datafile copy RECID=97 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_12_4gokneg6_.dbf
datafile 97 switched to datafile copy
input datafile copy RECID=98 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_13_4ioknero_.dbf
datafile 98 switched to datafile copy
input datafile copy RECID=99 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_bande_7koknhgo_.dbf
datafile 99 switched to datafile copy
input datafile copy RECID=100 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7loknhgr_.dbf
datafile 100 switched to datafile copy
input datafile copy RECID=101 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7moknhh2_.dbf
datafile 101 switched to datafile copy
input datafile copy RECID=102 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7noknhh6_.dbf
datafile 102 switched to datafile copy
input datafile copy RECID=103 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7ooknhhd_.dbf
datafile 103 switched to datafile copy
input datafile copy RECID=104 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7poknhhk_.dbf
datafile 104 switched to datafile copy
input datafile copy RECID=105 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7qoknhhn_.dbf
datafile 105 switched to datafile copy
input datafile copy RECID=106 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7roknhhu_.dbf
datafile 106 switched to datafile copy
input datafile copy RECID=107 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7soknhi1_.dbf
datafile 107 switched to datafile copy
input datafile copy RECID=108 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5toknh4b_.dbf
datafile 108 switched to datafile copy
input datafile copy RECID=109 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5jokngva_.dbf
datafile 109 switched to datafile copy
input datafile copy RECID=110 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_53okngec_.dbf
datafile 110 switched to datafile copy
input datafile copy RECID=111 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4tokng2f_.dbf
datafile 111 switched to datafile copy
input datafile copy RECID=112 STAMP=827049664 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4qoknfrb_.dbf
datafile 112 switched to datafile copy
input datafile copy RECID=113 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7toknhi8_.dbf
datafile 113 switched to datafile copy
input datafile copy RECID=114 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7uoknhif_.dbf
datafile 114 switched to datafile copy
input datafile copy RECID=115 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7voknhii_.dbf
datafile 115 switched to datafile copy
input datafile copy RECID=116 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_61oknh6b_.dbf
datafile 116 switched to datafile copy
input datafile copy RECID=117 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5hokngte_.dbf
datafile 117 switched to datafile copy
input datafile copy RECID=118 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5cokngpg_.dbf
datafile 118 switched to datafile copy
input datafile copy RECID=119 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5voknh59_.dbf
datafile 119 switched to datafile copy
input datafile copy RECID=120 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_80oknhip_.dbf
datafile 120 switched to datafile copy
input datafile copy RECID=121 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_81oknhj1_.dbf
datafile 121 switched to datafile copy
input datafile copy RECID=122 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_82oknhj4_.dbf
datafile 122 switched to datafile copy
input datafile copy RECID=123 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_83oknhjb_.dbf
datafile 123 switched to datafile copy
input datafile copy RECID=124 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_84oknhje_.dbf
datafile 124 switched to datafile copy
input datafile copy RECID=125 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_85oknhjl_.dbf
datafile 125 switched to datafile copy
input datafile copy RECID=126 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_86oknhjs_.dbf
datafile 126 switched to datafile copy
input datafile copy RECID=127 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_87oknhjv_.dbf
datafile 127 switched to datafile copy
input datafile copy RECID=128 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_88oknhk6_.dbf
datafile 128 switched to datafile copy
input datafile copy RECID=129 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_89oknhk9_.dbf
datafile 129 switched to datafile copy
input datafile copy RECID=130 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8aoknhkh_.dbf
datafile 130 switched to datafile copy
input datafile copy RECID=131 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8boknhko_.dbf
datafile 131 switched to datafile copy
input datafile copy RECID=132 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8coknhkr_.dbf
datafile 132 switched to datafile copy
input datafile copy RECID=133 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8doknhl2_.dbf
datafile 133 switched to datafile copy
input datafile copy RECID=134 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8eoknhl9_.dbf
datafile 134 switched to datafile copy
input datafile copy RECID=135 STAMP=827049665 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs2_8foknhlc_.dbf
contents of Memory Script:
{
set until scn 22604287;
recover
clone database
delete archivelog
;
}
executing Memory Script
executing command: SET until clause
Starting recover at 25-SEP-13
using channel ORA_AUX_DISK_1
starting media recovery
archived log for thread 1 with sequence 545 is already on disk as file /opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf
archived log file name=/opt/app/oracle/product/11.2.0.3/db_1/dbs/arch1_545_824223118.dbf thread=1 sequence=545
media recovery complete, elapsed time: 00:00:00
Finished recover at 25-SEP-13
Oracle instance started
Total System Global Area 10689474560 bytes
Fixed Size 2237776 bytes
Variable Size 5603592880 bytes
Database Buffers 5066719232 bytes
Redo Buffers 16924672 bytes
contents of Memory Script:
{
sql clone "alter system set db_name =
''DESTINATION'' comment=
''Reset to original value by RMAN'' scope=spfile";
sql clone "alter system reset db_unique_name scope=spfile";
shutdown clone immediate;
startup clone nomount;
}
executing Memory Script
sql statement: alter system set db_name = ''DESTINATION'' comment= ''Reset to original value by RMAN'' scope=spfile
sql statement: alter system reset db_unique_name scope=spfile
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 10689474560 bytes
Fixed Size 2237776 bytes
Variable Size 5603592880 bytes
Database Buffers 5066719232 bytes
Redo Buffers 16924672 bytes
sql statement: CREATE CONTROLFILE REUSE SET DATABASE "DESTINATION" RESETLOGS ARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 200
MAXINSTANCES 8
MAXLOGHISTORY 2920
LOGFILE
GROUP 1 SIZE 1 G ,
GROUP 2 SIZE 1 G ,
GROUP 3 SIZE 1 G
DATAFILE
'/oradata/DESTINATION/DESTINATION/datafile/o1_mf_system_5soknh3s_.dbf'
CHARACTER SET WE8ISO8859P1
contents of Memory Script:
{
set newname for clone tempfile 1 to new;
set newname for clone tempfile 2 to new;
set newname for clone tempfile 3 to new;
switch clone tempfile all;
catalog clone datafilecopy "/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sysaux_8goknhlj_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs1_4cokncti_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_users_4boknb68_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_4dokndh3_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_inde_4eoknduc_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_4joknf0t_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_i_4hoknell_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_6foknhae_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_11_4uokng4g_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_12_4koknf6d_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_13_4loknfak_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6goknhah_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6hoknhao_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4vokng67_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4noknfh6_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_5iokngu7_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_backup_5dokngq9_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ioknhar_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6joknhb2_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6koknhb5_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6loknhbc_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6moknhbk_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6noknhbn_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ooknhbu_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6doknha0_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6poknhc5_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6qoknhc8_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6roknhcf_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6soknhcm_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6toknhcp_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6uoknhd0_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6voknhd3_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_70oknhda_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_66oknh8e_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_71oknhde_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_client_s_72oknhdl_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_data_73oknhds_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_index_74oknhe3_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_5loknh0i_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_in_75oknhe6_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_inde_64oknh7o_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_tbs_6eoknha7_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_item_76oknhed_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw_77oknhek_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw__78oknhen_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_79oknheu_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_4fokne7j_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_00_6aoknh9a_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_01_67oknh8l_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_02_68oknh8s_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_03_69oknh93_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_04_65oknh87_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_05_5uoknh4q_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_06_5gokngsk_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_07_5eokngr2_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_08_59okngmh_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_09_56okngit_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_10_55oknghg_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_11_51okngat_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_12_4poknfom_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_13_52okngcl_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_99_7aoknhf1_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6boknh9i_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_63oknh79_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_62oknh6q_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_60oknh5n_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5qoknh2u_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5noknh1g_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5fokngrr_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6coknh9p_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5roknh3d_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5ooknh1v_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5moknh11_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4sokng0e_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4ooknfld_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_50okng8s_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_7boknhf8_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_test_7coknhfg_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_4roknfub_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_inde_7doknhfj_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_new_7eoknhfq_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7foknhft_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7goknhg4_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_01_7hoknhg7_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_02_7ioknhge_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_03_7joknhgh_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_04_5poknh2e_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_05_5koknh03_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_06_5bokngon_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_07_58okngld_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_08_54okngg3_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_09_5aokngnk_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_10_57okngka_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_11_4moknfdt_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_12_4gokneg6_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_13_4ioknero_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_bande_7koknhgo_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7loknhgr_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7moknhh2_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7noknhh6_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7ooknhhd_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7poknhhk_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7qoknhhn_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7roknhhu_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7soknhi1_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5toknh4b_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5jokngva_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_53okngec_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4tokng2f_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4qoknfrb_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7toknhi8_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7uoknhif_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7voknhii_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_61oknh6b_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5hokngte_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5cokngpg_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5voknh59_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_80oknhip_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_81oknhj1_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_82oknhj4_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_83oknhjb_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_84oknhje_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_85oknhjl_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_86oknhjs_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_87oknhjv_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_88oknhk6_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_89oknhk9_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8aoknhkh_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8boknhko_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8coknhkr_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8doknhl2_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8eoknhl9_.dbf",
"/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs2_8foknhlc_.dbf";
switch clone datafile all;
}
executing Memory Script
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
renamed tempfile 1 to /oradata/DESTINATION/DESTINATION/datafile/o1_mf_temp_%u_.tmp in control file
renamed tempfile 2 to /oradata/DESTINATION/DESTINATION/datafile/o1_mf_gtemp_rr_%u_.tmp in control file
renamed tempfile 3 to /oradata/DESTINATION/DESTINATION/datafile/o1_mf_temp_rrs_%u_.tmp in control file
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sysaux_8goknhlj_.dbf RECID=1 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs1_4cokncti_.dbf RECID=2 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_users_4boknb68_.dbf RECID=3 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_4dokndh3_.dbf RECID=4 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_inde_4eoknduc_.dbf RECID=5 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_4joknf0t_.dbf RECID=6 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_i_4hoknell_.dbf RECID=7 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_6foknhae_.dbf RECID=8 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_11_4uokng4g_.dbf RECID=9 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_12_4koknf6d_.dbf RECID=10 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_13_4loknfak_.dbf RECID=11 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6goknhah_.dbf RECID=12 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6hoknhao_.dbf RECID=13 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4vokng67_.dbf RECID=14 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4noknfh6_.dbf RECID=15 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_5iokngu7_.dbf RECID=16 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_backup_5dokngq9_.dbf RECID=17 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ioknhar_.dbf RECID=18 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6joknhb2_.dbf RECID=19 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6koknhb5_.dbf RECID=20 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6loknhbc_.dbf RECID=21 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6moknhbk_.dbf RECID=22 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6noknhbn_.dbf RECID=23 STAMP=827049695
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ooknhbu_.dbf RECID=24 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6doknha0_.dbf RECID=25 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6poknhc5_.dbf RECID=26 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6qoknhc8_.dbf RECID=27 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6roknhcf_.dbf RECID=28 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6soknhcm_.dbf RECID=29 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6toknhcp_.dbf RECID=30 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6uoknhd0_.dbf RECID=31 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6voknhd3_.dbf RECID=32 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_70oknhda_.dbf RECID=33 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_66oknh8e_.dbf RECID=34 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_71oknhde_.dbf RECID=35 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_client_s_72oknhdl_.dbf RECID=36 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_data_73oknhds_.dbf RECID=37 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_index_74oknhe3_.dbf RECID=38 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_5loknh0i_.dbf RECID=39 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_in_75oknhe6_.dbf RECID=40 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_inde_64oknh7o_.dbf RECID=41 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_tbs_6eoknha7_.dbf RECID=42 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_item_76oknhed_.dbf RECID=43 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw_77oknhek_.dbf RECID=44 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw__78oknhen_.dbf RECID=45 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_79oknheu_.dbf RECID=46 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_4fokne7j_.dbf RECID=47 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_00_6aoknh9a_.dbf RECID=48 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_01_67oknh8l_.dbf RECID=49 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_02_68oknh8s_.dbf RECID=50 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_03_69oknh93_.dbf RECID=51 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_04_65oknh87_.dbf RECID=52 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_05_5uoknh4q_.dbf RECID=53 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_06_5gokngsk_.dbf RECID=54 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_07_5eokngr2_.dbf RECID=55 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_08_59okngmh_.dbf RECID=56 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_09_56okngit_.dbf RECID=57 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_10_55oknghg_.dbf RECID=58 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_11_51okngat_.dbf RECID=59 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_12_4poknfom_.dbf RECID=60 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_13_52okngcl_.dbf RECID=61 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_99_7aoknhf1_.dbf RECID=62 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6boknh9i_.dbf RECID=63 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_63oknh79_.dbf RECID=64 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_62oknh6q_.dbf RECID=65 STAMP=827049696
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_60oknh5n_.dbf RECID=66 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5qoknh2u_.dbf RECID=67 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5noknh1g_.dbf RECID=68 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5fokngrr_.dbf RECID=69 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6coknh9p_.dbf RECID=70 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5roknh3d_.dbf RECID=71 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5ooknh1v_.dbf RECID=72 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5moknh11_.dbf RECID=73 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4sokng0e_.dbf RECID=74 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4ooknfld_.dbf RECID=75 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_50okng8s_.dbf RECID=76 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_7boknhf8_.dbf RECID=77 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_test_7coknhfg_.dbf RECID=78 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_4roknfub_.dbf RECID=79 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_inde_7doknhfj_.dbf RECID=80 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_new_7eoknhfq_.dbf RECID=81 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7foknhft_.dbf RECID=82 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7goknhg4_.dbf RECID=83 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_01_7hoknhg7_.dbf RECID=84 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_02_7ioknhge_.dbf RECID=85 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_03_7joknhgh_.dbf RECID=86 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_04_5poknh2e_.dbf RECID=87 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_05_5koknh03_.dbf RECID=88 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_06_5bokngon_.dbf RECID=89 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_07_58okngld_.dbf RECID=90 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_08_54okngg3_.dbf RECID=91 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_09_5aokngnk_.dbf RECID=92 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_10_57okngka_.dbf RECID=93 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_11_4moknfdt_.dbf RECID=94 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_12_4gokneg6_.dbf RECID=95 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_13_4ioknero_.dbf RECID=96 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_bande_7koknhgo_.dbf RECID=97 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7loknhgr_.dbf RECID=98 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7moknhh2_.dbf RECID=99 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7noknhh6_.dbf RECID=100 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7ooknhhd_.dbf RECID=101 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7poknhhk_.dbf RECID=102 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7qoknhhn_.dbf RECID=103 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7roknhhu_.dbf RECID=104 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7soknhi1_.dbf RECID=105 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5toknh4b_.dbf RECID=106 STAMP=827049697
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5jokngva_.dbf RECID=107 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_53okngec_.dbf RECID=108 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4tokng2f_.dbf RECID=109 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4qoknfrb_.dbf RECID=110 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7toknhi8_.dbf RECID=111 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7uoknhif_.dbf RECID=112 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7voknhii_.dbf RECID=113 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_61oknh6b_.dbf RECID=114 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5hokngte_.dbf RECID=115 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5cokngpg_.dbf RECID=116 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5voknh59_.dbf RECID=117 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_80oknhip_.dbf RECID=118 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_81oknhj1_.dbf RECID=119 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_82oknhj4_.dbf RECID=120 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_83oknhjb_.dbf RECID=121 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_84oknhje_.dbf RECID=122 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_85oknhjl_.dbf RECID=123 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_86oknhjs_.dbf RECID=124 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_87oknhjv_.dbf RECID=125 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_88oknhk6_.dbf RECID=126 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_89oknhk9_.dbf RECID=127 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8aoknhkh_.dbf RECID=128 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8boknhko_.dbf RECID=129 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8coknhkr_.dbf RECID=130 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8doknhl2_.dbf RECID=131 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8eoknhl9_.dbf RECID=132 STAMP=827049698
cataloged datafile copy
datafile copy file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs2_8foknhlc_.dbf RECID=133 STAMP=827049698
datafile 2 switched to datafile copy
input datafile copy RECID=1 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sysaux_8goknhlj_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=2 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs1_4cokncti_.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=3 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_users_4boknb68_.dbf
datafile 5 switched to datafile copy
input datafile copy RECID=4 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_4dokndh3_.dbf
datafile 6 switched to datafile copy
input datafile copy RECID=5 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_inde_4eoknduc_.dbf
datafile 7 switched to datafile copy
input datafile copy RECID=6 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_4joknf0t_.dbf
datafile 8 switched to datafile copy
input datafile copy RECID=7 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_acn_ri_i_4hoknell_.dbf
datafile 9 switched to datafile copy
input datafile copy RECID=8 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_6foknhae_.dbf
datafile 10 switched to datafile copy
input datafile copy RECID=9 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_11_4uokng4g_.dbf
datafile 11 switched to datafile copy
input datafile copy RECID=10 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_12_4koknf6d_.dbf
datafile 12 switched to datafile copy
input datafile copy RECID=11 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_13_4loknfak_.dbf
datafile 13 switched to datafile copy
input datafile copy RECID=12 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6goknhah_.dbf
datafile 14 switched to datafile copy
input datafile copy RECID=13 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_6hoknhao_.dbf
datafile 15 switched to datafile copy
input datafile copy RECID=14 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4vokng67_.dbf
datafile 16 switched to datafile copy
input datafile copy RECID=15 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_4noknfh6_.dbf
datafile 17 switched to datafile copy
input datafile copy RECID=16 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_avg_inde_5iokngu7_.dbf
datafile 18 switched to datafile copy
input datafile copy RECID=17 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_backup_5dokngq9_.dbf
datafile 19 switched to datafile copy
input datafile copy RECID=18 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ioknhar_.dbf
datafile 20 switched to datafile copy
input datafile copy RECID=19 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6joknhb2_.dbf
datafile 21 switched to datafile copy
input datafile copy RECID=20 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6koknhb5_.dbf
datafile 22 switched to datafile copy
input datafile copy RECID=21 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6loknhbc_.dbf
datafile 23 switched to datafile copy
input datafile copy RECID=22 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6moknhbk_.dbf
datafile 24 switched to datafile copy
input datafile copy RECID=23 STAMP=827049695 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6noknhbn_.dbf
datafile 25 switched to datafile copy
input datafile copy RECID=24 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6ooknhbu_.dbf
datafile 26 switched to datafile copy
input datafile copy RECID=25 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6doknha0_.dbf
datafile 27 switched to datafile copy
input datafile copy RECID=26 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6poknhc5_.dbf
datafile 28 switched to datafile copy
input datafile copy RECID=27 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6qoknhc8_.dbf
datafile 29 switched to datafile copy
input datafile copy RECID=28 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6roknhcf_.dbf
datafile 30 switched to datafile copy
input datafile copy RECID=29 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6soknhcm_.dbf
datafile 31 switched to datafile copy
input datafile copy RECID=30 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6toknhcp_.dbf
datafile 32 switched to datafile copy
input datafile copy RECID=31 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6uoknhd0_.dbf
datafile 33 switched to datafile copy
input datafile copy RECID=32 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_6voknhd3_.dbf
datafile 34 switched to datafile copy
input datafile copy RECID=33 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_70oknhda_.dbf
datafile 35 switched to datafile copy
input datafile copy RECID=34 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_66oknh8e_.dbf
datafile 36 switched to datafile copy
input datafile copy RECID=35 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ca_ex_ae_71oknhde_.dbf
datafile 37 switched to datafile copy
input datafile copy RECID=36 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_client_s_72oknhdl_.dbf
datafile 38 switched to datafile copy
input datafile copy RECID=37 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_data_73oknhds_.dbf
datafile 39 switched to datafile copy
input datafile copy RECID=38 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_cs_index_74oknhe3_.dbf
datafile 40 switched to datafile copy
input datafile copy RECID=39 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_5loknh0i_.dbf
datafile 41 switched to datafile copy
input datafile copy RECID=40 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_intmd_in_75oknhe6_.dbf
datafile 42 switched to datafile copy
input datafile copy RECID=41 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_inde_64oknh7o_.dbf
datafile 43 switched to datafile copy
input datafile copy RECID=42 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_irh_tbs_6eoknha7_.dbf
datafile 44 switched to datafile copy
input datafile copy RECID=43 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_item_76oknhed_.dbf
datafile 45 switched to datafile copy
input datafile copy RECID=44 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw_77oknhek_.dbf
datafile 46 switched to datafile copy
input datafile copy RECID=45 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_mbd_raw__78oknhen_.dbf
datafile 47 switched to datafile copy
input datafile copy RECID=46 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_79oknheu_.dbf
datafile 48 switched to datafile copy
input datafile copy RECID=47 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_raw_tabs_4fokne7j_.dbf
datafile 49 switched to datafile copy
input datafile copy RECID=48 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_00_6aoknh9a_.dbf
datafile 50 switched to datafile copy
input datafile copy RECID=49 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_01_67oknh8l_.dbf
datafile 51 switched to datafile copy
input datafile copy RECID=50 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_02_68oknh8s_.dbf
datafile 52 switched to datafile copy
input datafile copy RECID=51 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_03_69oknh93_.dbf
datafile 53 switched to datafile copy
input datafile copy RECID=52 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_04_65oknh87_.dbf
datafile 54 switched to datafile copy
input datafile copy RECID=53 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_05_5uoknh4q_.dbf
datafile 55 switched to datafile copy
input datafile copy RECID=54 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_06_5gokngsk_.dbf
datafile 56 switched to datafile copy
input datafile copy RECID=55 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_07_5eokngr2_.dbf
datafile 57 switched to datafile copy
input datafile copy RECID=56 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_08_59okngmh_.dbf
datafile 58 switched to datafile copy
input datafile copy RECID=57 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_09_56okngit_.dbf
datafile 59 switched to datafile copy
input datafile copy RECID=58 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_10_55oknghg_.dbf
datafile 60 switched to datafile copy
input datafile copy RECID=59 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_11_51okngat_.dbf
datafile 61 switched to datafile copy
input datafile copy RECID=60 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_12_4poknfom_.dbf
datafile 62 switched to datafile copy
input datafile copy RECID=61 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_13_52okngcl_.dbf
datafile 63 switched to datafile copy
input datafile copy RECID=62 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_99_7aoknhf1_.dbf
datafile 64 switched to datafile copy
input datafile copy RECID=63 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6boknh9i_.dbf
datafile 65 switched to datafile copy
input datafile copy RECID=64 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_63oknh79_.dbf
datafile 66 switched to datafile copy
input datafile copy RECID=65 STAMP=827049696 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_62oknh6q_.dbf
datafile 67 switched to datafile copy
input datafile copy RECID=66 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_60oknh5n_.dbf
datafile 68 switched to datafile copy
input datafile copy RECID=67 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5qoknh2u_.dbf
datafile 69 switched to datafile copy
input datafile copy RECID=68 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5noknh1g_.dbf
datafile 70 switched to datafile copy
input datafile copy RECID=69 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5fokngrr_.dbf
datafile 71 switched to datafile copy
input datafile copy RECID=70 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_6coknh9p_.dbf
datafile 72 switched to datafile copy
input datafile copy RECID=71 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5roknh3d_.dbf
datafile 73 switched to datafile copy
input datafile copy RECID=72 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5ooknh1v_.dbf
datafile 74 switched to datafile copy
input datafile copy RECID=73 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_5moknh11_.dbf
datafile 75 switched to datafile copy
input datafile copy RECID=74 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4sokng0e_.dbf
datafile 76 switched to datafile copy
input datafile copy RECID=75 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_4ooknfld_.dbf
datafile 77 switched to datafile copy
input datafile copy RECID=76 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_50okng8s_.dbf
datafile 78 switched to datafile copy
input datafile copy RECID=77 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_index_7boknhf8_.dbf
datafile 79 switched to datafile copy
input datafile copy RECID=78 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_ra_test_7coknhfg_.dbf
datafile 80 switched to datafile copy
input datafile copy RECID=79 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_4roknfub_.dbf
datafile 81 switched to datafile copy
input datafile copy RECID=80 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_inde_7doknhfj_.dbf
datafile 82 switched to datafile copy
input datafile copy RECID=81 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_rrs_new_7eoknhfq_.dbf
datafile 83 switched to datafile copy
input datafile copy RECID=82 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7foknhft_.dbf
datafile 84 switched to datafile copy
input datafile copy RECID=83 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_schedule_7goknhg4_.dbf
datafile 85 switched to datafile copy
input datafile copy RECID=84 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_01_7hoknhg7_.dbf
datafile 86 switched to datafile copy
input datafile copy RECID=85 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_02_7ioknhge_.dbf
datafile 87 switched to datafile copy
input datafile copy RECID=86 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_03_7joknhgh_.dbf
datafile 88 switched to datafile copy
input datafile copy RECID=87 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_04_5poknh2e_.dbf
datafile 89 switched to datafile copy
input datafile copy RECID=88 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_05_5koknh03_.dbf
datafile 90 switched to datafile copy
input datafile copy RECID=89 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_06_5bokngon_.dbf
datafile 91 switched to datafile copy
input datafile copy RECID=90 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_07_58okngld_.dbf
datafile 92 switched to datafile copy
input datafile copy RECID=91 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_08_54okngg3_.dbf
datafile 93 switched to datafile copy
input datafile copy RECID=92 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_09_5aokngnk_.dbf
datafile 94 switched to datafile copy
input datafile copy RECID=93 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_10_57okngka_.dbf
datafile 95 switched to datafile copy
input datafile copy RECID=94 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_11_4moknfdt_.dbf
datafile 96 switched to datafile copy
input datafile copy RECID=95 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_12_4gokneg6_.dbf
datafile 97 switched to datafile copy
input datafile copy RECID=96 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_13_4ioknero_.dbf
datafile 98 switched to datafile copy
input datafile copy RECID=97 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_bande_7koknhgo_.dbf
datafile 99 switched to datafile copy
input datafile copy RECID=98 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7loknhgr_.dbf
datafile 100 switched to datafile copy
input datafile copy RECID=99 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7moknhh2_.dbf
datafile 101 switched to datafile copy
input datafile copy RECID=100 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7noknhh6_.dbf
datafile 102 switched to datafile copy
input datafile copy RECID=101 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7ooknhhd_.dbf
datafile 103 switched to datafile copy
input datafile copy RECID=102 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7poknhhk_.dbf
datafile 104 switched to datafile copy
input datafile copy RECID=103 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7qoknhhn_.dbf
datafile 105 switched to datafile copy
input datafile copy RECID=104 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7roknhhu_.dbf
datafile 106 switched to datafile copy
input datafile copy RECID=105 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_7soknhi1_.dbf
datafile 107 switched to datafile copy
input datafile copy RECID=106 STAMP=827049697 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5toknh4b_.dbf
datafile 108 switched to datafile copy
input datafile copy RECID=107 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_5jokngva_.dbf
datafile 109 switched to datafile copy
input datafile copy RECID=108 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_53okngec_.dbf
datafile 110 switched to datafile copy
input datafile copy RECID=109 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4tokng2f_.dbf
datafile 111 switched to datafile copy
input datafile copy RECID=110 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_index_4qoknfrb_.dbf
datafile 112 switched to datafile copy
input datafile copy RECID=111 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7toknhi8_.dbf
datafile 113 switched to datafile copy
input datafile copy RECID=112 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7uoknhif_.dbf
datafile 114 switched to datafile copy
input datafile copy RECID=113 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_7voknhii_.dbf
datafile 115 switched to datafile copy
input datafile copy RECID=114 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_61oknh6b_.dbf
datafile 116 switched to datafile copy
input datafile copy RECID=115 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5hokngte_.dbf
datafile 117 switched to datafile copy
input datafile copy RECID=116 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5cokngpg_.dbf
datafile 118 switched to datafile copy
input datafile copy RECID=117 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_5voknh59_.dbf
datafile 119 switched to datafile copy
input datafile copy RECID=118 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_80oknhip_.dbf
datafile 120 switched to datafile copy
input datafile copy RECID=119 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_81oknhj1_.dbf
datafile 121 switched to datafile copy
input datafile copy RECID=120 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_82oknhj4_.dbf
datafile 122 switched to datafile copy
input datafile copy RECID=121 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_83oknhjb_.dbf
datafile 123 switched to datafile copy
input datafile copy RECID=122 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_84oknhje_.dbf
datafile 124 switched to datafile copy
input datafile copy RECID=123 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_85oknhjl_.dbf
datafile 125 switched to datafile copy
input datafile copy RECID=124 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_86oknhjs_.dbf
datafile 126 switched to datafile copy
input datafile copy RECID=125 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_87oknhjv_.dbf
datafile 127 switched to datafile copy
input datafile copy RECID=126 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_88oknhk6_.dbf
datafile 128 switched to datafile copy
input datafile copy RECID=127 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_89oknhk9_.dbf
datafile 129 switched to datafile copy
input datafile copy RECID=128 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8aoknhkh_.dbf
datafile 130 switched to datafile copy
input datafile copy RECID=129 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8boknhko_.dbf
datafile 131 switched to datafile copy
input datafile copy RECID=130 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8coknhkr_.dbf
datafile 132 switched to datafile copy
input datafile copy RECID=131 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8doknhl2_.dbf
datafile 133 switched to datafile copy
input datafile copy RECID=132 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_sc_trend_8eoknhl9_.dbf
datafile 134 switched to datafile copy
input datafile copy RECID=133 STAMP=827049698 file name=/oradata/DESTINATION/DESTINATION/datafile/o1_mf_undotbs2_8foknhlc_.dbf
contents of Memory Script:
{
Alter clone database open resetlogs;
}
executing Memory Script
database opened
Finished Duplicate Db at 25-SEP-13
RMAN> exit
Recovery Manager complete.