Steps for creating Single instance standby database from 2 node RAC primary database :-
- Change the archive log mode :
- Enable force logging mode:
- Parameter Configuration setup as below
=================================================================
Need to be set below parameters on primary
=================================================================
SQL> ALTER SYSTEM SET STANDBY_FILE_MANAGEMENT=AUTO SCOPE=BOTH SID='*';
SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_1=ENABLE scope=both sid='*';
SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_2=ENABLE sid='*';
SQL> ALTER SYSTEM SET LOG_ARCHIVE_CONFIG='DG_CONFIG=(ORCL,ORCLDG)' sid='*';
SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_2='SERVICE=ORCLDG NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCLDG' sid='*';
SQL> ALTER SYSTEM SET LOG_ARCHIVE_FORMAT='%t_%s_%r.arch' SCOPE=SPFILE;
SQL> ALTER SYSTEM SET FAL_SERVER='ORCLDG' SCOPE=SPFILE;
SQL> ALTER SYSTEM SET FAL_CLIENT='ORCL' SCOPE=SPFILE;
SQL> ALTER SYSTEM SET db_file_name_convert='+DATA','+DATA','+ARCH','+ARCH' SCOPE=SPFILE;
SQL> ALTER SYSTEM SET log_file_name_convert='+DATA','+DATA','+ARCH','+ARCH' SCOPE=SPFILE;
[oracle@orarac03 ~]$ cat initORCLDG.ora
*.audit_file_dest='/applications/oracle/d19.3.0/oracle_base/admin/ORCLDG/adump'
*.audit_trail='DB'
*.cluster_database=FALSE
*.compatible='12.1.0.2.0'
*.control_file_record_keep_time=30
*.control_files='+DATA/ORCLDG/CONTROLFILE/current.259.1080596609','+ARCH/ORCLDG/CONTROLFILE/current.258.1080596613'#Restore Controlfile
*.core_dump_dest='/applications/oracle/d19.3.0/oracle_base/admin/ORCLDG/cdump'
*.cpu_count=12
*.cpu_min_count='12'
*.db_block_size=8192
*.db_name='ORCL'
*.db_unique_name='ORCLDG'
*.diagnostic_dest='/applications/oracle/d19.3.0/oracle_base/admin/ORCLDG/'
*.fal_client='ORCLDG'
*.fal_server='ORCL'
ORCL1.instance_number=1
ORCL2.instance_number=2
*.open_cursors=300
*.pga_aggregate_limit=0
*.pga_aggregate_target=10G
*.plsql_warnings='DISABLE:ALL'# PL/SQL warnings at init.ora
*.processes=3800
*.query_rewrite_enabled='TRUE'
*.remote_login_passwordfile='EXCLUSIVE'
*.result_cache_max_size=209728K
*.session_cached_cursors=300
*.sessions=5722
*.sga_max_size=40G
*.sga_target=0
*.standby_file_management='AUTO'
ORCL1.thread=1
ORCL2.thread=2
*.transactions=6295
*.undo_management='AUTO'
ORCL1.undo_tablespace='UNDOTBS1'
ORCL2.undo_tablespace='UNDOTBS2'
4. Standby Listener Configuration:
5. TNS Connection string Configuration :
6. Create respective directories in Standby Server:
7. Start Standby listener :
8. Copying password & parameter file to standby server:
9. Check connectivity between primary and standby side :
10. Standby Database Creation :
[oracle@orarac03]$ sqlplus / as sysdba
SQL> startup nomount;
11. Connect RMAN to create standby database
[oracle@orarac03 cloning_orcldg]$ cat rman_cloning.ksh
#!/bin/ksh
export ORACLE_SID=ORCLDG
export ORACLE_HOME=/applications/oracle/d19.3.0/oracle_home
export ORACLE_BASE=/applications/oracle/d19.3.0/oracle_base
rman target sys/welcome123@ORCL1 auxiliary sys/welcome123@ORCLDG msglog /home/oracle/cloning_orcldg/rman_ORCLDG_cloning.log cmdfile=/home/oracle/cloning_orcldg/rman_ORCLDG_cloning.cmd
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$ cat rman_ORCLDG_cloning.cmd
run
{
allocate channel c1 type disk;
allocate channel c2 type disk;
allocate channel c3 type disk;
allocate channel c4 type disk;
allocate channel c5 type disk;
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;
allocate auxiliary channel aux9 device type disk;
allocate auxiliary channel aux10 device type disk;
duplicate target database for standby from active database using backupset section size 1g
spfile
parameter_value_convert 'ORCL','ORCLDGDG'
set db_name='ORCL'
set db_unique_name='ORCLDGDG'
set db_file_name_convert='+DATA/ORCL/DATAFILE','+DATA','+DATA/ORCL/TEMPFILE','+DATA'
set log_file_name_convert='+DATA/ORCL/ONLINELOG','+DATA','+ARCH/ORCL/ONLINELOG','+ARCH'
set control_files='+DATA/ORCLDGDG/control01.ctl','+DATA/ORCLDGDG/control02.ctl'
set log_archive_config='DG_CONFIG=(ORCL,ORCLDGDG)'
set log_archive_dest_2='service=ORCL NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL'
set fal_client='ORCLDGDG'
set fal_server='ORCL'
set log_archive_dest_1='location=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDGDG'
set db_recovery_file_dest='+ARCH'
set db_recovery_file_dest_size='80G'
set log_archive_dest_state_1='ENABLE'
set log_archive_dest_state_2='ENABLE'
set cluster_database='FALSE'
set audit_file_dest='/ORACLE/ORCLDGDG'
set diagnostic_dest='/ORACLE/ORCLDGDG'
nofilenamecheck;
}
#!/bin/ksh
export ORACLE_SID=ORCLDG
export ORACLE_HOME=/applications/oracle/d19.3.0/oracle_home
export ORACLE_BASE=/applications/oracle/d19.3.0/oracle_base
rman target sys/welcome123@ORCL1 auxiliary sys/welcome123@ORCLDG msglog /home/oracle/cloning_orcldg/rman_ORCLDG_cloning.log cmdfile=/home/oracle/cloning_orcldg/rman_ORCLDG_cloning.cmd
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$
[oracle@orarac03 cloning_orcldg]$ cat rman_ORCLDG_cloning.cmd
run
{
allocate channel c1 type disk;
allocate channel c2 type disk;
allocate channel c3 type disk;
allocate channel c4 type disk;
allocate channel c5 type disk;
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;
allocate auxiliary channel aux9 device type disk;
allocate auxiliary channel aux10 device type disk;
duplicate target database for standby from active database using backupset section size 1g
spfile
parameter_value_convert 'ORCL','ORCLDGDG'
set db_name='ORCL'
set db_unique_name='ORCLDGDG'
set db_file_name_convert='+DATA/ORCL/DATAFILE','+DATA','+DATA/ORCL/TEMPFILE','+DATA'
set log_file_name_convert='+DATA/ORCL/ONLINELOG','+DATA','+ARCH/ORCL/ONLINELOG','+ARCH'
set control_files='+DATA/ORCLDGDG/control01.ctl','+DATA/ORCLDGDG/control02.ctl'
set log_archive_config='DG_CONFIG=(ORCL,ORCLDGDG)'
set log_archive_dest_2='service=ORCL NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL'
set fal_client='ORCLDGDG'
set fal_server='ORCL'
set log_archive_dest_1='location=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDGDG'
set db_recovery_file_dest='+ARCH'
set db_recovery_file_dest_size='80G'
set log_archive_dest_state_1='ENABLE'
set log_archive_dest_state_2='ENABLE'
set cluster_database='FALSE'
set audit_file_dest='/ORACLE/ORCLDGDG'
set diagnostic_dest='/ORACLE/ORCLDGDG'
nofilenamecheck;
}
[oracle@orarac03 cloning_orcldg]$ nohup sh rman_cloning.ksh & ----> run script in background
==============================================================
[oracle@orarac03 dba_scripts]$ sqlplus '/as sysdba'
SQL*Plus: Release 19.0.0.0.0 - Production on Mon Sep 20 19:44:36 2021
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
[oracle@orarac03 dba_scripts]$ cat longops.sql
set lines 200
set pagesize 999
cle bre
col sid form 999999
col start_time head "Start|Time" form a12 trunc
col opname head "Operation" form a12 trunc
col target head "Object" form a20
col module head "Module" form a25
col totalwork head "Total|Work" form 9999999999 trunc
col Sofar head "Sofar" form 9999999999 trunc
col elamin head "Elapsed|Time|(Mins)" form 99999999 trunc
col tre head "Time|Remain|(Sec)" form 999999999 trunc
select l.sid,l.serial#,module,s.sql_id,to_char(start_time,'dd-mon:hh24:mi') start_time,
opname,target,totalwork,sofar,(elapsed_Seconds/60) elamin,
time_remaining tre
from gv$session_longops l, gv$session s
where
s.sid=l.sid
and s.serial#=l.serial#
and totalwork <> SOFAR
order by l.sid,tre, start_time,sid
/
SQL> @longops.sql
Elapsed Time
Start Total Time Remain
SID SERIAL# Module SQL_ID Time Operation Object Work Sofar (Mins) (Sec)
------- ---------- ------------------------- ------------- ------------ ------------ -------------------- ----------- ----------- --------- ----------
5 60000 restore full datafile 20-sep:19:39 RMAN: full d 47898632 152573 5 89501
480 22441 rman@orarac03 (TNS V 20-sep:18:33 RMAN: aggreg 489 ########### 206486793 69 243457
1-V3)
1436 28241 restore full datafile 20-sep:19:40 RMAN: full d 47898632 123389 5 104542
1913 41569 restore full datafile 20-sep:19:38 RMAN: full d 47898632 162300 6 102649
2389 58892 restore full datafile 20-sep:19:44 RMAN: full d 47898632 4605 0 72803
2866 5296 restore full datafile 20-sep:19:39 RMAN: full d 47898632 134653 5 104287
3340 49152 restore full datafile 20-sep:19:44 RMAN: full d 47898632 12797 0 82323
4298 7122 restore full datafile 20-sep:19:39 RMAN: full d 47898632 141949 5 98576
4777 43528 restore full datafile 20-sep:19:44 RMAN: full d 47898632 18941 1 96058
5251 2717 restore full datafile 20-sep:19:40 RMAN: full d 47898632 125436 4 96738
10 rows selected.
==============================================================
SQL*Plus: Release 19.0.0.0.0 - Production on Mon Sep 20 19:44:36 2021
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
[oracle@orarac03 dba_scripts]$ cat longops.sql
set lines 200
set pagesize 999
cle bre
col sid form 999999
col start_time head "Start|Time" form a12 trunc
col opname head "Operation" form a12 trunc
col target head "Object" form a20
col module head "Module" form a25
col totalwork head "Total|Work" form 9999999999 trunc
col Sofar head "Sofar" form 9999999999 trunc
col elamin head "Elapsed|Time|(Mins)" form 99999999 trunc
col tre head "Time|Remain|(Sec)" form 999999999 trunc
select l.sid,l.serial#,module,s.sql_id,to_char(start_time,'dd-mon:hh24:mi') start_time,
opname,target,totalwork,sofar,(elapsed_Seconds/60) elamin,
time_remaining tre
from gv$session_longops l, gv$session s
where
s.sid=l.sid
and s.serial#=l.serial#
and totalwork <> SOFAR
order by l.sid,tre, start_time,sid
/
SQL> @longops.sql
Elapsed Time
Start Total Time Remain
SID SERIAL# Module SQL_ID Time Operation Object Work Sofar (Mins) (Sec)
------- ---------- ------------------------- ------------- ------------ ------------ -------------------- ----------- ----------- --------- ----------
5 60000 restore full datafile 20-sep:19:39 RMAN: full d 47898632 152573 5 89501
480 22441 rman@orarac03 (TNS V 20-sep:18:33 RMAN: aggreg 489 ########### 206486793 69 243457
1-V3)
1436 28241 restore full datafile 20-sep:19:40 RMAN: full d 47898632 123389 5 104542
1913 41569 restore full datafile 20-sep:19:38 RMAN: full d 47898632 162300 6 102649
2389 58892 restore full datafile 20-sep:19:44 RMAN: full d 47898632 4605 0 72803
2866 5296 restore full datafile 20-sep:19:39 RMAN: full d 47898632 134653 5 104287
3340 49152 restore full datafile 20-sep:19:44 RMAN: full d 47898632 12797 0 82323
4298 7122 restore full datafile 20-sep:19:39 RMAN: full d 47898632 141949 5 98576
4777 43528 restore full datafile 20-sep:19:44 RMAN: full d 47898632 18941 1 96058
5251 2717 restore full datafile 20-sep:19:40 RMAN: full d 47898632 125436 4 96738
10 rows selected.
==============================================================
[oracle@orarac03 dba_scripts]$ cat rman_prog1.sql
set line 200 pages 200
col CLIENT_INFO format a20
col "% Complete" format 999.99
select s.inst_id, o.sid, CLIENT_INFO, context, sofar, totalwork,
round(sofar/totalwork*100,2) "% Complete"
FROM gv$session_longops o, gv$session s
WHERE opname LIKE 'RMAN%'
AND opname NOT LIKE '%aggregate%'
AND o.sid=s.sid
AND totalwork != 0
AND sofar <> totalwork;
SQL> @rman_prog1.sql
Total
INST_ID SID CLIENT_INFO CONTEXT Sofar Work % Complete
---------- ------- -------------------- ---------- ----------- ----------- ----------
1 5 rman channel=aux10 1 179837 47898632 .38
1 1436 rman channel=aux1 1 145917 47898632 .30
1 1913 rman channel=aux2 1 185084 47898632 .39
1 2389 rman channel=aux3 1 31229 47898632 .07
1 2866 rman channel=aux4 1 157693 47898632 .33
1 3340 rman channel=aux5 1 38397 47898632 .08
1 3820 rman channel=aux6 1 28284 47898632 .06
1 4298 rman channel=aux7 1 167293 47898632 .35
1 4777 rman channel=aux8 1 43005 47898632 .09
1 5251 rman channel=aux9 1 150524 47898632 .31
10 rows selected.
==============================================================
set line 200 pages 200
col CLIENT_INFO format a20
col "% Complete" format 999.99
select s.inst_id, o.sid, CLIENT_INFO, context, sofar, totalwork,
round(sofar/totalwork*100,2) "% Complete"
FROM gv$session_longops o, gv$session s
WHERE opname LIKE 'RMAN%'
AND opname NOT LIKE '%aggregate%'
AND o.sid=s.sid
AND totalwork != 0
AND sofar <> totalwork;
SQL> @rman_prog1.sql
Total
INST_ID SID CLIENT_INFO CONTEXT Sofar Work % Complete
---------- ------- -------------------- ---------- ----------- ----------- ----------
1 5 rman channel=aux10 1 179837 47898632 .38
1 1436 rman channel=aux1 1 145917 47898632 .30
1 1913 rman channel=aux2 1 185084 47898632 .39
1 2389 rman channel=aux3 1 31229 47898632 .07
1 2866 rman channel=aux4 1 157693 47898632 .33
1 3340 rman channel=aux5 1 38397 47898632 .08
1 3820 rman channel=aux6 1 28284 47898632 .06
1 4298 rman channel=aux7 1 167293 47898632 .35
1 4777 rman channel=aux8 1 43005 47898632 .09
1 5251 rman channel=aux9 1 150524 47898632 .31
10 rows selected.
==============================================================
[oracle@orarac03 dba_scripts]$ cat rmanprogress.sql
set lines 200
set pages 200
SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
FROM V$SESSION_LONGOPS
WHERE OPNAME LIKE 'RMAN%'
AND OPNAME NOT LIKE '%aggregate%'
AND TOTALWORK != 0
AND SOFAR <> TOTALWORK;
SQL> @rmanprogress.sql
Total
SID SERIAL# CONTEXT Sofar Work %_COMPLETE
------- ---------- ---------- ----------- ----------- ----------
4777 43528 1 51692 47898632 ,11
5251 2717 1 160252 47898632 ,33
3820 42191 1 37628 47898632 ,08
2866 5296 1 166397 47898632 ,35
1436 28241 1 154109 47898632 ,32
3340 49152 1 47101 47898632 ,1
1913 41569 1 4605 47898632 ,01
4298 7122 1 178173 47898632 ,37
2389 58892 1 41213 47898632 ,09
9 rows selected.
==============================================================
set lines 200
set pages 200
SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
FROM V$SESSION_LONGOPS
WHERE OPNAME LIKE 'RMAN%'
AND OPNAME NOT LIKE '%aggregate%'
AND TOTALWORK != 0
AND SOFAR <> TOTALWORK;
SQL> @rmanprogress.sql
Total
SID SERIAL# CONTEXT Sofar Work %_COMPLETE
------- ---------- ---------- ----------- ----------- ----------
4777 43528 1 51692 47898632 ,11
5251 2717 1 160252 47898632 ,33
3820 42191 1 37628 47898632 ,08
2866 5296 1 166397 47898632 ,35
1436 28241 1 154109 47898632 ,32
3340 49152 1 47101 47898632 ,1
1913 41569 1 4605 47898632 ,01
4298 7122 1 178173 47898632 ,37
2389 58892 1 41213 47898632 ,09
9 rows selected.
==============================================================
[oracle@orarac03 dba_scripts]$ cat restoration_speed.sql
TTITLE OFF
SET HEAD OFF
SELECT 'Throughput: '||
ROUND(SUM(v.value/1024/1024),1) || ' Meg so far @ ' ||
ROUND(SUM(v.value /1024/1024)/NVL((SELECT MIN(elapsed_seconds)
FROM v$session_longops
WHERE opname LIKE 'RMAN: aggregate input'
AND sofar != TOTALWORK
AND elapsed_seconds IS NOT NULL
),SUM(v.value /1024/1024)),2) || ' Meg/sec'
FROM gv$sesstat v, v$statname n, gv$session s
WHERE v.statistic# = n.statistic#
AND n.name = 'physical write total bytes'
AND v.sid = s.sid
AND v.inst_id = s.inst_id
AND s.program LIKE 'rman@%'
GROUP BY n.name
/
SET HEAD ON
TTITLE OFF
SET HEAD OFF
SELECT 'Throughput: '||
ROUND(SUM(v.value/1024/1024),1) || ' Meg so far @ ' ||
ROUND(SUM(v.value /1024/1024)/NVL((SELECT MIN(elapsed_seconds)
FROM v$session_longops
WHERE opname LIKE 'RMAN: aggregate input'
AND sofar != TOTALWORK
AND elapsed_seconds IS NOT NULL
),SUM(v.value /1024/1024)),2) || ' Meg/sec'
FROM gv$sesstat v, v$statname n, gv$session s
WHERE v.statistic# = n.statistic#
AND n.name = 'physical write total bytes'
AND v.sid = s.sid
AND v.inst_id = s.inst_id
AND s.program LIKE 'rman@%'
GROUP BY n.name
/
SET HEAD ON
SQL> @restoration_speed.sql
Throughput: 171573,4 Meg so far @ 41,66 Meg/sec
==============================================================
[oracle@orarac03 dba_scripts]$ cat rman_event.sql
set line 200 pages 200
col CLIENT_INFO format a20
col event format a40
col seconds format 999999.99
select inst_id, sid, CLIENT_INFO, seq#, event, state, wait_time_micro/1000000 seconds
from gv$session where program like '%rman%' and
wait_time = 0 and
action is not null;
Throughput: 171573,4 Meg so far @ 41,66 Meg/sec
==============================================================
[oracle@orarac03 dba_scripts]$ cat rman_event.sql
set line 200 pages 200
col CLIENT_INFO format a20
col event format a40
col seconds format 999999.99
select inst_id, sid, CLIENT_INFO, seq#, event, state, wait_time_micro/1000000 seconds
from gv$session where program like '%rman%' and
wait_time = 0 and
action is not null;
SQL> @rman_event.sql
INST_ID SID CLIENT_INFO SEQ# EVENT STATE SECONDS
---------- ------- -------------------- ---------- ---------------------------------------- ------------------- ----------
1 480 15986 SQL*Net message from client WAITING 5.81
1 1436 rman channel=aux1 16101 remote db file read WAITING .08
1 1913 rman channel=aux2 16151 remote db file read WAITING .09
1 2389 rman channel=aux3 15506 remote db file read WAITING .24
1 2866 rman channel=aux4 14971 remote db file read WAITING .20
1 3340 rman channel=aux5 16640 remote db file read WAITING .05
1 4777 rman channel=aux8 16655 remote db file read WAITING .24
1 5251 rman channel=aux9 14852 remote db file read WAITING .11
8 rows selected.
=============================================================
INST_ID SID CLIENT_INFO SEQ# EVENT STATE SECONDS
---------- ------- -------------------- ---------- ---------------------------------------- ------------------- ----------
1 480 15986 SQL*Net message from client WAITING 5.81
1 1436 rman channel=aux1 16101 remote db file read WAITING .08
1 1913 rman channel=aux2 16151 remote db file read WAITING .09
1 2389 rman channel=aux3 15506 remote db file read WAITING .24
1 2866 rman channel=aux4 14971 remote db file read WAITING .20
1 3340 rman channel=aux5 16640 remote db file read WAITING .05
1 4777 rman channel=aux8 16655 remote db file read WAITING .24
1 5251 rman channel=aux9 14852 remote db file read WAITING .11
8 rows selected.
=============================================================
After completing duplication, Enable Recovery Manager in standby side:
SQL> alter database recover managed standby database disconnect from session; Database altered.
Check Standby SYNC Verification:
SQL> SELECT ARCH.THREAD# "Thread", ARCH.SEQUENCE# "Last Sequence Received", APPL.SEQUENCE# "Last Sequence Applied", (ARCH.SEQUENCE# - APPL.SEQUENCE#) "Difference" FROM (SELECT THREAD# ,SEQUENCE# FROM V$ARCHIVED_LOG WHERE (THREAD#,FIRST_TIME ) IN (SELECT THREAD#,MAX(FIRST_TIME) FROM V$ARCHIVED_LOG GROUP BY THREAD#)) ARCH,(SELECT THREAD# ,SEQUENCE# FROM V$LOG_HISTORY WHERE (THREAD#,FIRST_TIME ) IN (SELECT THREAD#,MAX(FIRST_TIME) FROM V$LOG_HISTORY GROUP BY THREAD#)) APPL WHERE ARCH.THREAD# = APPL.THREAD# ORDER BY 1;
Thread Last Sequence Received Last Sequence Applied Difference
---------- ---------------------- --------------------- -----------
1 299314 299314 0
2 149803 149803 0
==============================================================
oracle@orarac03 cloning_orcldb]$ cat rman_orcldg_cloning.log
Recovery Manager: Release 19.0.0.0.0 - Production on Mon Sep 20 18:30:48 2021
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle and/or its affiliates. All rights reserved.
connected to target database: ORCL (DBID=1469876962)
connected to auxiliary database: ORCL (not mounted)
RMAN> run
2> {
3> allocate channel c1 type disk;
4> allocate channel c2 type disk;
5> allocate channel c3 type disk;
6> allocate channel c4 type disk;
7> allocate channel c5 type disk;
8> allocate auxiliary channel aux1 device type disk;
9> allocate auxiliary channel aux2 device type disk;
10> allocate auxiliary channel aux3 device type disk;
11> allocate auxiliary channel aux4 device type disk;
12> allocate auxiliary channel aux5 device type disk;
13> allocate auxiliary channel aux6 device type disk;
14> allocate auxiliary channel aux7 device type disk;
15> allocate auxiliary channel aux8 device type disk;
16> allocate auxiliary channel aux9 device type disk;
17> allocate auxiliary channel aux10 device type disk;
18> duplicate target database for standby from active database using backupset section size 1g
19> spfile
20> parameter_value_convert 'ORCL','ORCLDG'
21> set db_name='ORCL'
22> set db_unique_name='ORCLDG'
23> set db_file_name_convert='+DATA/ORCLGC/DATAFILE','+DATA','+DATA/ORCLGC/TEMPFILE','+DATA'
24> set log_file_name_convert='+DATA/ORCLGC/ONLINELOG','+DATA','+ARCH/ORCLGC/ONLINELOG','+ARCH'
25> set control_files='+DATA/ORCLDG/control01.ctl','+DATA/ORCLDG/control02.ctl'
26> set log_archive_config='DG_CONFIG=(ORCL,ORCLDG)'
27> set log_archive_dest_2='service=ORCL NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL'
28> set fal_client='ORCLDG'
29> set fal_server='ORCL'
30> set log_archive_dest_1='location=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDG'
31> set db_recovery_file_dest='+ARCH'
32> set db_recovery_file_dest_size='80G'
33> set log_archive_dest_state_1='ENABLE'
34> set log_archive_dest_state_2='ENABLE'
35> set cluster_database='FALSE'
36> set audit_file_dest='/ORACLE/ORCLDG'
37> set diagnostic_dest='/ORACLE/ORCLDG'
38> nofilenamecheck;
39> }
40>
using target database control file instead of recovery catalog
allocated channel: c1
channel c1: SID=2052 instance=ORCL1 device type=DISK
allocated channel: c2
channel c2: SID=3648 instance=ORCL1 device type=DISK
allocated channel: c3
channel c3: SID=3499 instance=ORCL1 device type=DISK
allocated channel: c4
channel c4: SID=5294 instance=ORCL1 device type=DISK
allocated channel: c5
channel c5: SID=4858 instance=ORCL1 device type=DISK
allocated channel: aux1
channel aux1: SID=2778 device type=DISK
allocated channel: aux2
channel aux2: SID=3255 device type=DISK
allocated channel: aux3
channel aux3: SID=3729 device type=DISK
allocated channel: aux4
channel aux4: SID=4209 device type=DISK
allocated channel: aux5
channel aux5: SID=4687 device type=DISK
allocated channel: aux6
channel aux6: SID=5163 device type=DISK
allocated channel: aux7
channel aux7: SID=5640 device type=DISK
allocated channel: aux8
channel aux8: SID=393 device type=DISK
allocated channel: aux9
channel aux9: SID=871 device type=DISK
allocated channel: aux10
channel aux10: SID=1349 device type=DISK
Starting Duplicate Db at 20.09.21
contents of Memory Script:
{
backup as copy reuse
passwordfile auxiliary format '/applications/oracle/d19.3.0/oracle_home/dbs/orapwORCLDG' ;
restore clone from service 'ORCL1' spfile to
'/applications/oracle/d19.3.0/oracle_home/dbs/spfileORCLDG.ora';
sql clone "alter system set spfile= ''/applications/oracle/d19.3.0/oracle_home/dbs/spfileORCLDG.ora''";
}
executing Memory Script
Starting backup at 20.09.21
Finished backup at 20.09.21
Starting restore at 20.09.21
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: restoring SPFILE
output file name=/applications/oracle/d19.3.0/oracle_home/dbs/spfileORCLDG.ora
channel aux1: restore complete, elapsed time: 00:00:01
Finished restore at 20.09.21
sql statement: alter system set spfile= ''/applications/oracle/d19.3.0/oracle_home/dbs/spfileORCLDG.ora''
contents of Memory Script:
{
sql clone "alter system set dg_broker_config_file1 =
''+DATA/ORCLDG/broker1.dat'' comment=
'''' scope=spfile";
sql clone "alter system set dg_broker_config_file2 =
''+DATA/ORCLDG/broker2.dat'' comment=
'''' scope=spfile";
sql clone "alter system set db_name =
''ORCL'' comment=
'''' scope=spfile";
sql clone "alter system set db_unique_name =
''ORCLDG'' comment=
'''' scope=spfile";
sql clone "alter system set db_file_name_convert =
''+DATA/ORCL/DATAFILE'', ''+DATA'', ''+DATA/ORCL/TEMPFILE'', ''+DATA'' comment=
'''' scope=spfile";
sql clone "alter system set log_file_name_convert =
''+DATA/ORCL/ONLINELOG'', ''+DATA'', ''+ARCH/ORCL/ONLINELOG'', ''+ARCH'' comment=
'''' scope=spfile";
sql clone "alter system set control_files =
''+DATA/ORCLDG/control01.ctl'', ''+DATA/ORCLDG/control02.ctl'' comment=
'''' scope=spfile";
sql clone "alter system set log_archive_config =
''DG_CONFIG=(ORCL,ORCLDG)'' comment=
'''' scope=spfile";
sql clone "alter system set log_archive_dest_2 =
''service=ORCL NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL'' comment=
'''' scope=spfile";
sql clone "alter system set fal_client =
''ORCLDG'' comment=
'''' scope=spfile";
sql clone "alter system set fal_server =
''ORCL'' comment=
'''' scope=spfile";
sql clone "alter system set log_archive_dest_1 =
''location=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDG'' comment=
'''' scope=spfile";
sql clone "alter system set db_recovery_file_dest =
''+ARCH'' comment=
'''' scope=spfile";
sql clone "alter system set db_recovery_file_dest_size =
80G comment=
'''' scope=spfile";
sql clone "alter system set log_archive_dest_state_1 =
''ENABLE'' comment=
'''' scope=spfile";
sql clone "alter system set log_archive_dest_state_2 =
''ENABLE'' comment=
'''' scope=spfile";
sql clone "alter system set cluster_database =
FALSE comment=
'''' scope=spfile";
sql clone "alter system set audit_file_dest =
''/ORACLE/ORCLDG'' comment=
'''' scope=spfile";
sql clone "alter system set diagnostic_dest =
''/ORACLE/ORCLDG'' comment=
'''' scope=spfile";
shutdown clone immediate;
startup clone nomount;
}
executing Memory Script
sql statement: alter system set dg_broker_config_file1 = ''+DATA/ORCLDG/broker1.dat'' comment= '''' scope=spfile
sql statement: alter system set dg_broker_config_file2 = ''+DATA/ORCLDG/broker2.dat'' comment= '''' scope=spfile
sql statement: alter system set db_name = ''ORCL'' comment= '''' scope=spfile
sql statement: alter system set db_unique_name = ''ORCLDG'' comment= '''' scope=spfile
sql statement: alter system set db_file_name_convert = ''+DATA/ORCL/DATAFILE'', ''+DATA'', ''+DATA/ORCL/TEMPFILE'', ''+DATA'' comment= '''' scope=spfile
sql statement: alter system set log_file_name_convert = ''+DATA/ORCL/ONLINELOG'', ''+DATA'', ''+ARCH/ORCL/ONLINELOG'', ''+ARCH'' comment= '''' scope=spfile
sql statement: alter system set control_files = ''+DATA/ORCLDG/control01.ctl'', ''+DATA/ORCLDG/control02.ctl'' comment= '''' scope=spfile
sql statement: alter system set log_archive_config = ''DG_CONFIG=(ORCL,ORCLDG)'' comment= '''' scope=spfile
sql statement: alter system set log_archive_dest_2 = ''service=ORCL NOAFFIRM ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL'' comment= '''' scope=spfile
sql statement: alter system set fal_client = ''ORCLDG'' comment= '''' scope=spfile
sql statement: alter system set fal_server = ''ORCL'' comment= '''' scope=spfile
sql statement: alter system set log_archive_dest_1 = ''location=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDG'' comment= '''' scope=spfile
sql statement: alter system set db_recovery_file_dest = ''+ARCH'' comment= '''' scope=spfile
sql statement: alter system set db_recovery_file_dest_size = 80G comment= '''' scope=spfile
sql statement: alter system set log_archive_dest_state_1 = ''ENABLE'' comment= '''' scope=spfile
sql statement: alter system set log_archive_dest_state_2 = ''ENABLE'' comment= '''' scope=spfile
sql statement: alter system set cluster_database = FALSE comment= '''' scope=spfile
sql statement: alter system set audit_file_dest = ''/ORACLE/ORCLDG'' comment= '''' scope=spfile
sql statement: alter system set diagnostic_dest = ''/ORACLE/ORCLDG'' comment= '''' scope=spfile
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 42949672016 bytes
Fixed Size 15985744 bytes
Variable Size 4966055936 bytes
Database Buffers 37849399296 bytes
Redo Buffers 118231040 bytes
allocated channel: aux1
channel aux1: SID=1436 device type=DISK
allocated channel: aux2
channel aux2: SID=1913 device type=DISK
allocated channel: aux3
channel aux3: SID=2389 device type=DISK
allocated channel: aux4
channel aux4: SID=2866 device type=DISK
allocated channel: aux5
channel aux5: SID=3340 device type=DISK
allocated channel: aux6
channel aux6: SID=3820 device type=DISK
allocated channel: aux7
channel aux7: SID=4298 device type=DISK
allocated channel: aux8
channel aux8: SID=4777 device type=DISK
allocated channel: aux9
channel aux9: SID=5251 device type=DISK
allocated channel: aux10
channel aux10: SID=5 device type=DISK
contents of Memory Script:
{
restore clone from service 'ORCL1' standby controlfile;
}
executing Memory Script
Starting restore at 20.09.21
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: restoring control file
channel aux1: restore complete, elapsed time: 00:00:26
output file name=+DATA/ORCLDG/control01.ctl
output file name=+DATA/ORCLDG/control02.ctl
Finished restore at 20.09.21
contents of Memory Script:
{
sql clone 'alter database mount standby database';
}
executing Memory Script
sql statement: alter database mount standby database
RMAN-05529: warning: DB_FILE_NAME_CONVERT resulted in invalid ASM names; names changed to disk group only.
contents of Memory Script:
{
set newname for tempfile 1 to
"+DATA";
set newname for tempfile 2 to
"+DATA/tivoliortstempt01.dbf";
switch clone tempfile all;
set newname for datafile 1 to
"+DATA";
set newname for datafile 2 to
"+DATA";
set newname for datafile 3 to
"+DATA";
set newname for datafile 4 to
"+DATA";
set newname for datafile 5 to
"+DATA";
set newname for datafile 6 to
"+DATA";
set newname for datafile 7 to
"+DATA";
set newname for datafile 8 to
"+DATA";
set newname for datafile 9 to
"+DATA";
set newname for datafile 10 to
"+DATA";
restore
section size 1 g from service
'ORCL1' clone database
;
sql 'alter system archive log current';
}
executing Memory Script
executing command: SET NEWNAME
executing command: SET NEWNAME
renamed tempfile 1 to +DATA in control file
renamed tempfile 2 to +DATA/tivoliortstempt01.dbf in control file
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
Starting restore at 20.09.21
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00001 to +DATA/ORCLDG/DATAFILE/system.288.1083782115
channel aux1: restoring section 1 of 1
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00002 to +DATA/ORCLDG/DATAFILE/sysaux.287.1083782115
channel aux2: restoring section 1 of 4
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux3: restoring section 1 of 32
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux4: restoring section 1 of 10
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00005 to +DATA/ORCLDG/DATAFILE/users.284.1083782117
channel aux5: restoring section 1 of 1
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 1 of 256
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00007 to +DATA/ORCLDG/DATAFILE/ts_capture.282.1083782119
channel aux7: restoring section 1 of 4
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00008 to +DATA/ORCLDG/DATAFILE/audit_ts.281.1083782121
channel aux8: restoring section 1 of 1
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00009 to +DATA/ORCLDG/DATAFILE/undotbs1.280.1083782121
channel aux9: restoring section 1 of 1
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00010 to +DATA/ORCLDG/DATAFILE/tivoliorts.279.1083782123
channel aux10: restoring section 1 of 1
channel aux5: restore complete, elapsed time: 00:00:06
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00002 to +DATA/ORCLDG/DATAFILE/sysaux.287.1083782115
channel aux5: restoring section 2 of 4
channel aux8: restore complete, elapsed time: 00:00:58
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00002 to +DATA/ORCLDG/DATAFILE/sysaux.287.1083782115
channel aux8: restoring section 3 of 4
channel aux7: restore complete, elapsed time: 00:01:35
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00002 to +DATA/ORCLDG/DATAFILE/sysaux.287.1083782115
channel aux7: restoring section 4 of 4
channel aux9: restore complete, elapsed time: 00:01:34
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux9: restoring section 2 of 32
channel aux10: restore complete, elapsed time: 00:01:33
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux10: restoring section 3 of 32
channel aux3: restore complete, elapsed time: 00:01:55
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux3: restoring section 4 of 32
channel aux4: restore complete, elapsed time: 00:01:55
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux4: restoring section 5 of 32
channel aux1: restore complete, elapsed time: 00:03:22
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux1: restoring section 6 of 32
channel aux2: restore complete, elapsed time: 00:03:24
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux2: restoring section 7 of 32
channel aux5: restore complete, elapsed time: 00:04:12
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux5: restoring section 8 of 32
channel aux10: restore complete, elapsed time: 00:03:05
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux10: restoring section 9 of 32
channel aux9: restore complete, elapsed time: 00:03:09
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux9: restoring section 10 of 32
channel aux3: restore complete, elapsed time: 00:03:08
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux3: restoring section 11 of 32
channel aux4: restore complete, elapsed time: 00:03:09
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux4: restoring section 12 of 32
channel aux8: restore complete, elapsed time: 00:04:04
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux8: restoring section 13 of 32
channel aux7: restore complete, elapsed time: 00:04:25
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux7: restoring section 14 of 32
channel aux6: restore complete, elapsed time: 00:06:10
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux6: restoring section 15 of 32
channel aux2: restore complete, elapsed time: 00:03:44
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux2: restoring section 16 of 32
channel aux1: restore complete, elapsed time: 00:03:53
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux1: restoring section 17 of 32
channel aux5: restore complete, elapsed time: 00:03:41
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux5: restoring section 18 of 32
channel aux4: restore complete, elapsed time: 00:03:41
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux4: restoring section 19 of 32
channel aux9: restore complete, elapsed time: 00:03:58
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux9: restoring section 20 of 32
channel aux10: restore complete, elapsed time: 00:04:03
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux10: restoring section 21 of 32
channel aux8: restore complete, elapsed time: 00:03:47
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux8: restoring section 22 of 32
channel aux3: restore complete, elapsed time: 00:03:59
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux3: restoring section 23 of 32
channel aux6: restore complete, elapsed time: 00:03:56
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux6: restoring section 24 of 32
channel aux7: restore complete, elapsed time: 00:04:19
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux7: restoring section 25 of 32
channel aux2: restore complete, elapsed time: 00:03:51
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux2: restoring section 26 of 32
channel aux1: restore complete, elapsed time: 00:04:10
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux1: restoring section 27 of 32
channel aux5: restore complete, elapsed time: 00:04:00
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux5: restoring section 28 of 32
channel aux4: restore complete, elapsed time: 00:04:00
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux4: restoring section 29 of 32
channel aux8: restore complete, elapsed time: 00:03:59
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux8: restoring section 30 of 32
channel aux10: restore complete, elapsed time: 00:04:06
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux10: restoring section 31 of 32
channel aux9: restore complete, elapsed time: 00:04:08
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00003 to +DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
channel aux9: restoring section 32 of 32
channel aux3: restore complete, elapsed time: 00:04:17
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux3: restoring section 2 of 10
channel aux6: restore complete, elapsed time: 00:03:58
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux6: restoring section 3 of 10
channel aux7: restore complete, elapsed time: 00:04:07
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux7: restoring section 4 of 10
channel aux2: restore complete, elapsed time: 00:04:07
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux2: restoring section 5 of 10
channel aux1: restore complete, elapsed time: 00:03:57
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux1: restoring section 6 of 10
channel aux5: restore complete, elapsed time: 00:03:47
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux5: restoring section 7 of 10
channel aux4: restore complete, elapsed time: 00:03:58
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux4: restoring section 8 of 10
channel aux9: restore complete, elapsed time: 00:03:49
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux9: restoring section 9 of 10
channel aux10: restore complete, elapsed time: 00:03:51
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00004 to +DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
channel aux10: restoring section 10 of 10
channel aux8: restore complete, elapsed time: 00:03:52
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data_xpay.283.1083782117
channel aux8: restoring section 2 of 256
channel aux3: restore complete, elapsed time: 00:03:53
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 3 of 256
channel aux6: restore complete, elapsed time: 00:03:52
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 4 of 256
channel aux7: restore complete, elapsed time: 00:04:03
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 5 of 256
channel aux2: restore complete, elapsed time: 00:03:53
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 6 of 256
channel aux1: restore complete, elapsed time: 00:03:45
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 7 of 256
channel aux5: restore complete, elapsed time: 00:03:27
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 8 of 256
channel aux4: restore complete, elapsed time: 00:03:16
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 9 of 256
channel aux9: restore complete, elapsed time: 00:03:32
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 10 of 256
channel aux10: restore complete, elapsed time: 00:03:31
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 11 of 256
channel aux8: restore complete, elapsed time: 00:06:45
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 12 of 256
channel aux3: restore complete, elapsed time: 00:06:35
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 13 of 256
channel aux6: restore complete, elapsed time: 00:06:25
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 14 of 256
channel aux7: restore complete, elapsed time: 00:06:35
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 15 of 256
channel aux1: restore complete, elapsed time: 00:06:27
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 16 of 256
channel aux5: restore complete, elapsed time: 00:06:20
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 17 of 256
channel aux2: restore complete, elapsed time: 00:07:00
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 18 of 256
channel aux4: restore complete, elapsed time: 00:06:26
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 19 of 256
channel aux9: restore complete, elapsed time: 00:06:35
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 20 of 256
channel aux10: restore complete, elapsed time: 00:06:50
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 21 of 256
channel aux3: restore complete, elapsed time: 00:06:35
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 22 of 256
channel aux8: restore complete, elapsed time: 00:06:54
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 23 of 256
channel aux6: restore complete, elapsed time: 00:06:49
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 24 of 256
channel aux5: restore complete, elapsed time: 00:06:12
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 25 of 256
channel aux7: restore complete, elapsed time: 00:06:39
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 26 of 256
channel aux1: restore complete, elapsed time: 00:06:29
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 27 of 256
channel aux2: restore complete, elapsed time: 00:06:19
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 28 of 256
channel aux4: restore complete, elapsed time: 00:06:18
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 29 of 256
channel aux9: restore complete, elapsed time: 00:06:19
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 30 of 256
channel aux10: restore complete, elapsed time: 00:06:03
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 31 of 256
channel aux3: restore complete, elapsed time: 00:06:33
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 32 of 256
channel aux8: restore complete, elapsed time: 00:06:30
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 33 of 256
channel aux6: restore complete, elapsed time: 00:06:30
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 34 of 256
channel aux5: restore complete, elapsed time: 00:06:02
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 35 of 256
channel aux7: restore complete, elapsed time: 00:06:47
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 36 of 256
channel aux1: restore complete, elapsed time: 00:06:47
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 37 of 256
channel aux2: restore complete, elapsed time: 00:06:33
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 38 of 256
channel aux4: restore complete, elapsed time: 00:06:23
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 39 of 256
channel aux9: restore complete, elapsed time: 00:06:33
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 40 of 256
channel aux10: restore complete, elapsed time: 00:06:33
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 41 of 256
channel aux8: restore complete, elapsed time: 00:06:03
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 42 of 256
channel aux3: restore complete, elapsed time: 00:06:39
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 43 of 256
channel aux5: restore complete, elapsed time: 00:06:21
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 44 of 256
channel aux6: restore complete, elapsed time: 00:06:29
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 45 of 256
channel aux2: restore complete, elapsed time: 00:06:04
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 46 of 256
channel aux7: restore complete, elapsed time: 00:06:22
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 47 of 256
channel aux1: restore complete, elapsed time: 00:06:32
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 48 of 256
channel aux4: restore complete, elapsed time: 00:06:41
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 49 of 256
channel aux9: restore complete, elapsed time: 00:06:20
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 50 of 256
channel aux10: restore complete, elapsed time: 00:06:21
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 51 of 256
channel aux8: restore complete, elapsed time: 00:06:10
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 52 of 256
channel aux3: restore complete, elapsed time: 00:06:30
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 53 of 256
channel aux5: restore complete, elapsed time: 00:06:21
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 54 of 256
channel aux6: restore complete, elapsed time: 00:06:20
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 55 of 256
channel aux2: restore complete, elapsed time: 00:06:21
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 56 of 256
channel aux7: restore complete, elapsed time: 00:06:45
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 57 of 256
channel aux4: restore complete, elapsed time: 00:06:10
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 58 of 256
channel aux1: restore complete, elapsed time: 00:06:37
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 59 of 256
channel aux9: restore complete, elapsed time: 00:06:22
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 60 of 256
channel aux10: restore complete, elapsed time: 00:06:36
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 61 of 256
channel aux8: restore complete, elapsed time: 00:06:37
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 62 of 256
channel aux3: restore complete, elapsed time: 00:06:16
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 63 of 256
channel aux5: restore complete, elapsed time: 00:05:58
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 64 of 256
channel aux6: restore complete, elapsed time: 00:06:13
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 65 of 256
channel aux2: restore complete, elapsed time: 00:06:13
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 66 of 256
channel aux4: restore complete, elapsed time: 00:06:07
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 67 of 256
channel aux7: restore complete, elapsed time: 00:06:24
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 68 of 256
channel aux1: restore complete, elapsed time: 00:06:32
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 69 of 256
channel aux9: restore complete, elapsed time: 00:06:22
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 70 of 256
channel aux10: restore complete, elapsed time: 00:06:10
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 71 of 256
channel aux8: restore complete, elapsed time: 00:06:20
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 72 of 256
channel aux3: restore complete, elapsed time: 00:06:21
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 73 of 256
channel aux5: restore complete, elapsed time: 00:06:20
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 74 of 256
channel aux6: restore complete, elapsed time: 00:06:21
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 75 of 256
channel aux2: restore complete, elapsed time: 00:06:10
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 76 of 256
channel aux4: restore complete, elapsed time: 00:06:31
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 77 of 256
channel aux7: restore complete, elapsed time: 00:06:30
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 78 of 256
channel aux10: restore complete, elapsed time: 00:05:54
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 79 of 256
channel aux1: restore complete, elapsed time: 00:06:28
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 80 of 256
channel aux9: restore complete, elapsed time: 00:06:28
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 81 of 256
channel aux8: restore complete, elapsed time: 00:06:44
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 82 of 256
channel aux5: restore complete, elapsed time: 00:06:17
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 83 of 256
channel aux3: restore complete, elapsed time: 00:06:40
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 84 of 256
channel aux6: restore complete, elapsed time: 00:06:20
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 85 of 256
channel aux2: restore complete, elapsed time: 00:06:51
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 86 of 256
channel aux10: restore complete, elapsed time: 00:05:54
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 87 of 256
channel aux7: restore complete, elapsed time: 00:06:28
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 88 of 256
channel aux4: restore complete, elapsed time: 00:06:53
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 89 of 256
channel aux9: restore complete, elapsed time: 00:06:18
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 90 of 256
channel aux1: restore complete, elapsed time: 00:06:49
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 91 of 256
channel aux8: restore complete, elapsed time: 00:06:33
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 92 of 256
channel aux5: restore complete, elapsed time: 00:06:25
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 93 of 256
channel aux6: restore complete, elapsed time: 00:06:14
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 94 of 256
channel aux3: restore complete, elapsed time: 00:06:32
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 95 of 256
channel aux10: restore complete, elapsed time: 00:06:12
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 96 of 256
channel aux2: restore complete, elapsed time: 00:06:19
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 97 of 256
channel aux4: restore complete, elapsed time: 00:06:17
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 98 of 256
channel aux7: restore complete, elapsed time: 00:06:42
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 99 of 256
channel aux9: restore complete, elapsed time: 00:06:15
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 100 of 256
channel aux1: restore complete, elapsed time: 00:06:15
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 101 of 256
channel aux8: restore complete, elapsed time: 00:06:25
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 102 of 256
channel aux5: restore complete, elapsed time: 00:06:26
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 103 of 256
channel aux3: restore complete, elapsed time: 00:06:28
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 104 of 256
channel aux6: restore complete, elapsed time: 00:06:44
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 105 of 256
channel aux10: restore complete, elapsed time: 00:06:28
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 106 of 256
channel aux2: restore complete, elapsed time: 00:06:29
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 107 of 256
channel aux9: restore complete, elapsed time: 00:05:56
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 108 of 256
channel aux7: restore complete, elapsed time: 00:06:06
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 109 of 256
channel aux4: restore complete, elapsed time: 00:06:31
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 110 of 256
channel aux1: restore complete, elapsed time: 00:06:40
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 111 of 256
channel aux5: restore complete, elapsed time: 00:06:11
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 112 of 256
channel aux8: restore complete, elapsed time: 00:06:20
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 113 of 256
channel aux3: restore complete, elapsed time: 00:06:32
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 114 of 256
channel aux6: restore complete, elapsed time: 00:06:32
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 115 of 256
channel aux10: restore complete, elapsed time: 00:06:22
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 116 of 256
channel aux9: restore complete, elapsed time: 00:05:58
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 117 of 256
channel aux2: restore complete, elapsed time: 00:06:26
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 118 of 256
channel aux7: restore complete, elapsed time: 00:06:49
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 119 of 256
channel aux1: restore complete, elapsed time: 00:06:14
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 120 of 256
channel aux4: restore complete, elapsed time: 00:06:40
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 121 of 256
channel aux5: restore complete, elapsed time: 00:05:55
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 122 of 256
channel aux8: restore complete, elapsed time: 00:06:19
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 123 of 256
channel aux3: restore complete, elapsed time: 00:06:20
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 124 of 256
channel aux6: restore complete, elapsed time: 00:06:19
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 125 of 256
channel aux10: restore complete, elapsed time: 00:06:20
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 126 of 256
channel aux2: restore complete, elapsed time: 00:06:14
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 127 of 256
channel aux9: restore complete, elapsed time: 00:06:34
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 128 of 256
channel aux1: restore complete, elapsed time: 00:06:14
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 129 of 256
channel aux7: restore complete, elapsed time: 00:06:31
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 130 of 256
channel aux4: restore complete, elapsed time: 00:06:40
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 131 of 256
channel aux5: restore complete, elapsed time: 00:06:30
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 132 of 256
channel aux8: restore complete, elapsed time: 00:06:40
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 133 of 256
channel aux3: restore complete, elapsed time: 00:06:10
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 134 of 256
channel aux6: restore complete, elapsed time: 00:06:45
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 135 of 256
channel aux10: restore complete, elapsed time: 00:06:07
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 136 of 256
channel aux2: restore complete, elapsed time: 00:06:32
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 137 of 256
channel aux9: restore complete, elapsed time: 00:06:32
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 138 of 256
channel aux1: restore complete, elapsed time: 00:06:22
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 139 of 256
channel aux7: restore complete, elapsed time: 00:06:22
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 140 of 256
channel aux4: restore complete, elapsed time: 00:06:22
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 141 of 256
channel aux5: restore complete, elapsed time: 00:06:32
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 142 of 256
channel aux8: restore complete, elapsed time: 00:06:13
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 143 of 256
channel aux3: restore complete, elapsed time: 00:06:22
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 144 of 256
channel aux10: restore complete, elapsed time: 00:06:05
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 145 of 256
channel aux6: restore complete, elapsed time: 00:06:20
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 146 of 256
channel aux2: restore complete, elapsed time: 00:06:13
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 147 of 256
channel aux9: restore complete, elapsed time: 00:06:42
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 148 of 256
channel aux1: restore complete, elapsed time: 00:06:23
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 149 of 256
channel aux7: restore complete, elapsed time: 00:06:22
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 150 of 256
channel aux4: restore complete, elapsed time: 00:06:23
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 151 of 256
channel aux8: restore complete, elapsed time: 00:06:17
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 152 of 256
channel aux5: restore complete, elapsed time: 00:06:40
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 153 of 256
channel aux3: restore complete, elapsed time: 00:06:45
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 154 of 256
channel aux10: restore complete, elapsed time: 00:06:19
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 155 of 256
channel aux6: restore complete, elapsed time: 00:06:48
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 156 of 256
channel aux2: restore complete, elapsed time: 00:06:29
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 157 of 256
channel aux9: restore complete, elapsed time: 00:06:20
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 158 of 256
channel aux1: restore complete, elapsed time: 00:06:49
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 159 of 256
channel aux7: restore complete, elapsed time: 00:06:50
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 160 of 256
channel aux4: restore complete, elapsed time: 00:06:59
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 161 of 256
channel aux8: restore complete, elapsed time: 00:06:19
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 162 of 256
channel aux5: restore complete, elapsed time: 00:06:28
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 163 of 256
channel aux2: restore complete, elapsed time: 00:05:44
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 164 of 256
channel aux3: restore complete, elapsed time: 00:06:53
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 165 of 256
channel aux10: restore complete, elapsed time: 00:06:56
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 166 of 256
channel aux6: restore complete, elapsed time: 00:06:28
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 167 of 256
channel aux9: restore complete, elapsed time: 00:07:00
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 168 of 256
channel aux7: restore complete, elapsed time: 00:06:12
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 169 of 256
channel aux1: restore complete, elapsed time: 00:06:28
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 170 of 256
channel aux4: restore complete, elapsed time: 00:06:08
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 171 of 256
channel aux8: restore complete, elapsed time: 00:05:47
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 172 of 256
channel aux5: restore complete, elapsed time: 00:05:47
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 173 of 256
channel aux2: restore complete, elapsed time: 00:06:07
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 174 of 256
channel aux3: restore complete, elapsed time: 00:06:17
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 175 of 256
channel aux10: restore complete, elapsed time: 00:06:15
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 176 of 256
channel aux6: restore complete, elapsed time: 00:06:22
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 177 of 256
channel aux9: restore complete, elapsed time: 00:06:23
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 178 of 256
channel aux7: restore complete, elapsed time: 00:06:30
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 179 of 256
channel aux1: restore complete, elapsed time: 00:06:17
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 180 of 256
channel aux4: restore complete, elapsed time: 00:06:16
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 181 of 256
channel aux8: restore complete, elapsed time: 00:06:17
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 182 of 256
channel aux5: restore complete, elapsed time: 00:06:16
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 183 of 256
channel aux2: restore complete, elapsed time: 00:05:56
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 184 of 256
channel aux10: restore complete, elapsed time: 00:05:45
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 185 of 256
channel aux6: restore complete, elapsed time: 00:06:06
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 186 of 256
channel aux3: restore complete, elapsed time: 00:06:29
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 187 of 256
channel aux9: restore complete, elapsed time: 00:06:23
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 188 of 256
channel aux1: restore complete, elapsed time: 00:06:31
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 189 of 256
channel aux4: restore complete, elapsed time: 00:06:17
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 190 of 256
channel aux7: restore complete, elapsed time: 00:06:34
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 191 of 256
channel aux8: restore complete, elapsed time: 00:06:07
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 192 of 256
channel aux5: restore complete, elapsed time: 00:06:27
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 193 of 256
channel aux2: restore complete, elapsed time: 00:06:37
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 194 of 256
channel aux10: restore complete, elapsed time: 00:06:20
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 195 of 256
channel aux6: restore complete, elapsed time: 00:06:09
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 196 of 256
channel aux3: restore complete, elapsed time: 00:06:28
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 197 of 256
channel aux9: restore complete, elapsed time: 00:06:17
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 198 of 256
channel aux4: restore complete, elapsed time: 00:06:17
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 199 of 256
channel aux1: restore complete, elapsed time: 00:06:19
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 200 of 256
channel aux7: restore complete, elapsed time: 00:06:34
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 201 of 256
channel aux8: restore complete, elapsed time: 00:06:13
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 202 of 256
channel aux5: restore complete, elapsed time: 00:06:23
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 203 of 256
channel aux10: restore complete, elapsed time: 00:05:55
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 204 of 256
channel aux2: restore complete, elapsed time: 00:06:11
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 205 of 256
channel aux6: restore complete, elapsed time: 00:06:33
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 206 of 256
channel aux3: restore complete, elapsed time: 00:06:15
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 207 of 256
channel aux9: restore complete, elapsed time: 00:06:35
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 208 of 256
channel aux1: restore complete, elapsed time: 00:06:24
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 209 of 256
channel aux7: restore complete, elapsed time: 00:06:11
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 210 of 256
channel aux4: restore complete, elapsed time: 00:06:36
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 211 of 256
channel aux8: restore complete, elapsed time: 00:06:40
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 212 of 256
channel aux5: restore complete, elapsed time: 00:06:19
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 213 of 256
channel aux10: restore complete, elapsed time: 00:06:10
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 214 of 256
channel aux2: restore complete, elapsed time: 00:06:17
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 215 of 256
channel aux3: restore complete, elapsed time: 00:05:50
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 216 of 256
channel aux6: restore complete, elapsed time: 00:05:58
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 217 of 256
channel aux4: restore complete, elapsed time: 00:05:54
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 218 of 256
channel aux9: restore complete, elapsed time: 00:06:21
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 219 of 256
channel aux7: restore complete, elapsed time: 00:06:05
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 220 of 256
channel aux1: restore complete, elapsed time: 00:06:24
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 221 of 256
channel aux8: restore complete, elapsed time: 00:05:53
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 222 of 256
channel aux5: restore complete, elapsed time: 00:06:03
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 223 of 256
channel aux2: restore complete, elapsed time: 00:05:38
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 224 of 256
channel aux10: restore complete, elapsed time: 00:06:08
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 225 of 256
channel aux3: restore complete, elapsed time: 00:06:13
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 226 of 256
channel aux6: restore complete, elapsed time: 00:06:28
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 227 of 256
channel aux4: restore complete, elapsed time: 00:05:48
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 228 of 256
channel aux9: restore complete, elapsed time: 00:05:48
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 229 of 256
channel aux1: restore complete, elapsed time: 00:05:55
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 230 of 256
channel aux7: restore complete, elapsed time: 00:06:13
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 231 of 256
channel aux8: restore complete, elapsed time: 00:05:58
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 232 of 256
channel aux5: restore complete, elapsed time: 00:05:58
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 233 of 256
channel aux2: restore complete, elapsed time: 00:05:58
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 234 of 256
channel aux10: restore complete, elapsed time: 00:06:08
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 235 of 256
channel aux3: restore complete, elapsed time: 00:05:58
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 236 of 256
channel aux6: restore complete, elapsed time: 00:05:50
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 237 of 256
channel aux4: restore complete, elapsed time: 00:06:00
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 238 of 256
channel aux9: restore complete, elapsed time: 00:06:16
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 239 of 256
channel aux7: restore complete, elapsed time: 00:05:54
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 240 of 256
channel aux1: restore complete, elapsed time: 00:06:13
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 241 of 256
channel aux8: restore complete, elapsed time: 00:06:29
channel aux8: starting datafile backup set restore
channel aux8: using network backup set from service ORCL1
channel aux8: specifying datafile(s) to restore from backup set
channel aux8: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux8: restoring section 242 of 256
channel aux5: restore complete, elapsed time: 00:06:29
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux5: restoring section 243 of 256
channel aux10: restore complete, elapsed time: 00:05:56
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 244 of 256
channel aux2: restore complete, elapsed time: 00:06:37
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 245 of 256
channel aux3: restore complete, elapsed time: 00:06:02
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 246 of 256
channel aux6: restore complete, elapsed time: 00:06:19
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux6: restoring section 247 of 256
channel aux2: restore complete, elapsed time: 00:02:37
channel aux2: starting datafile backup set restore
channel aux2: using network backup set from service ORCL1
channel aux2: specifying datafile(s) to restore from backup set
channel aux2: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux2: restoring section 248 of 256
channel aux4: restore complete, elapsed time: 00:06:20
channel aux4: starting datafile backup set restore
channel aux4: using network backup set from service ORCL1
channel aux4: specifying datafile(s) to restore from backup set
channel aux4: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux4: restoring section 249 of 256
channel aux7: restore complete, elapsed time: 00:05:58
channel aux7: starting datafile backup set restore
channel aux7: using network backup set from service ORCL1
channel aux7: specifying datafile(s) to restore from backup set
channel aux7: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux7: restoring section 250 of 256
channel aux10: restore complete, elapsed time: 00:03:00
channel aux10: starting datafile backup set restore
channel aux10: using network backup set from service ORCL1
channel aux10: specifying datafile(s) to restore from backup set
channel aux10: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux10: restoring section 251 of 256
channel aux1: restore complete, elapsed time: 00:06:05
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 252 of 256
channel aux9: restore complete, elapsed time: 00:06:28
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux9: restoring section 253 of 256
channel aux3: restore complete, elapsed time: 00:02:41
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 254 of 256
channel aux1: restore complete, elapsed time: 00:00:51
channel aux1: starting datafile backup set restore
channel aux1: using network backup set from service ORCL1
channel aux1: specifying datafile(s) to restore from backup set
channel aux1: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux1: restoring section 255 of 256
channel aux3: restore complete, elapsed time: 00:00:36
channel aux3: starting datafile backup set restore
channel aux3: using network backup set from service ORCL1
channel aux3: specifying datafile(s) to restore from backup set
channel aux3: restoring datafile 00006 to +DATA/ORCLDG/DATAFILE/data.283.1083782117
channel aux3: restoring section 256 of 256
channel aux9: restore complete, elapsed time: 00:00:52
channel aux9: starting datafile backup set restore
channel aux9: using network backup set from service ORCL1
channel aux9: specifying datafile(s) to restore from backup set
channel aux9: restoring datafile 00007 to +DATA/ORCLDG/DATAFILE/ts_capture.282.1083782119
channel aux9: restoring section 2 of 4
channel aux6: restore complete, elapsed time: 00:03:08
channel aux6: starting datafile backup set restore
channel aux6: using network backup set from service ORCL1
channel aux6: specifying datafile(s) to restore from backup set
channel aux6: restoring datafile 00007 to +DATA/ORCLDG/DATAFILE/ts_capture.282.1083782119
channel aux6: restoring section 3 of 4
channel aux5: restore complete, elapsed time: 00:04:39
channel aux5: starting datafile backup set restore
channel aux5: using network backup set from service ORCL1
channel aux5: specifying datafile(s) to restore from backup set
channel aux5: restoring datafile 00007 to +DATA/ORCLDG/DATAFILE/ts_capture.282.1083782119
channel aux5: restoring section 4 of 4
channel aux8: restore complete, elapsed time: 00:05:41
channel aux9: restore complete, elapsed time: 00:00:59
channel aux1: restore complete, elapsed time: 00:01:20
channel aux3: restore complete, elapsed time: 00:01:19
channel aux5: restore complete, elapsed time: 00:00:56
channel aux6: restore complete, elapsed time: 00:01:03
channel aux10: restore complete, elapsed time: 00:02:27
channel aux7: restore complete, elapsed time: 00:03:34
channel aux2: restore complete, elapsed time: 00:03:45
channel aux4: restore complete, elapsed time: 00:03:45
Finished restore at 20.09.21
sql statement: alter system archive log current
contents of Memory Script:
{
switch clone datafile all;
}
executing Memory Script
datafile 1 switched to datafile copy
input datafile copy RECID=80 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/system.288.1083782115
datafile 2 switched to datafile copy
input datafile copy RECID=81 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/sysaux.287.1083782115
datafile 3 switched to datafile copy
input datafile copy RECID=82 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/undotbs1.286.1083782115
datafile 4 switched to datafile copy
input datafile copy RECID=83 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/undotbs2.285.1083782115
datafile 5 switched to datafile copy
input datafile copy RECID=84 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/users.284.1083782117
datafile 6 switched to datafile copy
input datafile copy RECID=85 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/data.283.1083782117
datafile 7 switched to datafile copy
input datafile copy RECID=86 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/ts_capture.282.1083782119
datafile 8 switched to datafile copy
input datafile copy RECID=87 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/audit_ts.281.1083782121
datafile 9 switched to datafile copy
input datafile copy RECID=88 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/undotbs1.280.1083782121
datafile 10 switched to datafile copy
input datafile copy RECID=89 STAMP=1083792719 file name=+DATA/ORCLDG/DATAFILE/tivoliorts.279.1083782123
Finished Duplicate Db at 20.09.21
released channel: c1
released channel: c2
released channel: c3
released channel: c4
released channel: c5
released channel: aux1
released channel: aux2
released channel: aux3
released channel: aux4
released channel: aux5
released channel: aux6
released channel: aux7
released channel: aux8
released channel: aux9
released channel: aux10
Recovery Manager complete.
No comments:
Post a Comment