11gR2 -> 12cR2 Dataguard Upgrade in OL LXC on Ubuntu 17.04

Summary

Planning and piloting an upgrade of an 11gR2 (11.2.0.3.0) single-instance non-ASM primary with a similar Dataguard standby using Orabuntu-LXC and Oracle Linux 6.9 LXC containers running on an OpenvSwitch network directly on an Ubuntu 17.04 LXC host running linux kernel 4.10.0-33-generic #37-Ubuntu SMP (all containers and LXC Ubuntu host running on this kernel).

RMAN File: crst.rmn

The RMAN script used to build the standby is shown below.

[oracle@wwbandb1 dbs]$ cat crst.rmn

DUPLICATE TARGET DATABASE

FOR STANDBY

FROM ACTIVE DATABASE

DORECOVER

SPFILE

SET db_unique_name='SLCC_DR1'

SET LOG_ARCHIVE_DEST_2='SERVICE=SLCC ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=SLCC'

SET FAL_SERVER='SLCC'

NOFILENAMECHECK;

[oracle@wwbandb1 dbs]$

File: tnsnames.ora (primary and standby)

The tnsnames.ora on the primary side is shown below.

SLCC =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = ccbandb1)(PORT = 50556))

)

(CONNECT_DATA =

(SERVICE_NAME = SLCC)

(SID = SLCC)

)

)

SLCC_DR1 =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = wwbandb1)(PORT = 50556))

)

(CONNECT_DATA =

(SERVICE_NAME = SLCC)

(SID = SLCC)

)

)

The tnsnames.ora on the standby side is shown below.

SLCC =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = ccbandb1)(PORT = 50556))

)

(CONNECT_DATA =

(SERVICE_NAME = SLCC)

(SID = SLCC)

)

)

SLCC_DR1 =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = wwbandb1)(PORT = 50556))

)

(CONNECT_DATA =

(SERVICE_NAME = SLCC)

(SID = SLCC)

)

)

File: listener.ora (primary and standby)

The listener.ora files are shown below. First is the Dataguard primary.

[oracle@ccbandb1 admin]$ cat listener.ora

# listener.ora Network Configuration File: /oraprdsw/software/oracle/product/11gR2/network/admin/listener.ora

# Generated by Oracle configuration tools.

SLCC =

(DESCRIPTION_LIST =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 50556))

(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC50556))

)

)

SID_LIST_SLCC =

(SID_LIST =

(SID_DESC =

(ORACLE_HOME= /oraprdsw/software/oracle/product/11gR2)

(SID_NAME = SLCC)

)

)

LOGGING_SLCC = OFF

STARTUP_WAIT_TIME_SLCC = 0

CONNECT_TIMEOUT_SLCC = 45

TRACE_LEVEL_SLCC = OFF

ADR_BASE_SLCC = /oraprdsw/software/oracle

[oracle@ccbandb1 admin]$

Second is the Dataguard standby.

[oracle@wwbandb1 admin]$ cat listener.ora

# listener.ora Network Configuration File: /oraprdsw/software/oracle/product/11gR2/network/admin/listener.ora

# Generated by Oracle configuration tools.

SLCC =

(DESCRIPTION_LIST =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = wwbandb1)(PORT = 50556))

(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC50556))

)

)

SID_LIST_SLCC =

(SID_LIST =

(SID_DESC =

(ORACLE_HOME= /oraprdsw/software/oracle/product/11gR2)

(SID_NAME = SLCC)

)

)

LOGGING_SLCC = OFF

STARTUP_WAIT_TIME_SLCC = 0

CONNECT_TIMEOUT_SLCC = 45

TRACE_LEVEL_SLCC = OFF

ADR_BASE_SLCC = /oraprdsw/software/oracle

[oracle@wwbandb1 admin]$

The actual creation of the standby database using RMAN active duplicate method is shown below.

[oracle@wwbandb1 dbs]$ rman target sys/manager@SLCC auxiliary sys/manager@SLCC_DR1

Recovery Manager: Release 11.2.0.3.0 - Production on Tue Aug 29 14:29:38 2017

Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

connected to target database: SLCC (DBID=540407293)

connected to auxiliary database: SLCC (not mounted)

RMAN> @crst.rmn

RMAN> DUPLICATE TARGET DATABASE

2> FOR STANDBY

3> FROM ACTIVE DATABASE

4> DORECOVER

5> SPFILE

6> SET db_unique_name='SLCC_DR1'

7> SET LOG_ARCHIVE_DEST_2='SERVICE=SLCC ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=SLCC'

8> SET FAL_SERVER='SLCC'

9> NOFILENAMECHECK;

Starting Duplicate Db at 29-AUG-17

using target database control file instead of recovery catalog

allocated channel: ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: SID=1053 device type=DISK

contents of Memory Script:

{

backup as copy reuse

targetfile '/oraprdsw/software/oracle/product/11gR2/dbs/orapwSLCC' auxiliary format

'/oraprdsw/software/oracle/product/11gR2/dbs/orapwSLCC' targetfile

'/oraprdsw/software/oracle/product/11gR2/dbs/spfileSLCC.ora' auxiliary format

'/oraprdsw/software/oracle/product/11gR2/dbs/spfileSLCC.ora' ;

sql clone "alter system set spfile= ''/oraprdsw/software/oracle/product/11gR2/dbs/spfileSLCC.ora''";

}

executing Memory Script

Starting backup at 29-AUG-17

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=2105 device type=DISK

Finished backup at 29-AUG-17

sql statement: alter system set spfile= ''/oraprdsw/software/oracle/product/11gR2/dbs/spfileSLCC.ora''

contents of Memory Script:

{

sql clone "alter system set db_unique_name =

''SLCC_DR1'' comment=

'''' scope=spfile";

sql clone "alter system set LOG_ARCHIVE_DEST_2 =

''SERVICE=SLCC ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=SLCC'' comment=

'''' scope=spfile";

sql clone "alter system set FAL_SERVER =

''SLCC'' comment=

'''' scope=spfile";

shutdown clone immediate;

startup clone nomount;

}

executing Memory Script

sql statement: alter system set db_unique_name = ''SLCC_DR1'' comment= '''' scope=spfile

sql statement: alter system set LOG_ARCHIVE_DEST_2 = ''SERVICE=SLCC ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=SLCC'' comment= '''' scope=spfile

sql statement: alter system set FAL_SERVER = ''SLCC'' comment= '''' scope=spfile

Oracle instance shut down

connected to auxiliary database (not started)

Oracle instance started

Total System Global Area 6413680640 bytes

Fixed Size 2240344 bytes

Variable Size 3791650984 bytes

Database Buffers 2617245696 bytes

Redo Buffers 2543616 bytes

contents of Memory Script:

{

backup as copy current controlfile for standby auxiliary format '/SLCC/u01/ctrl_SLCC_01.ctl';

restore clone controlfile to '/SLCC/u01/ctrl_SLCC_02.ctl' from

'/SLCC/u01/ctrl_SLCC_01.ctl';

}

executing Memory Script

Starting backup at 29-AUG-17

using channel ORA_DISK_1

channel ORA_DISK_1: starting datafile copy

copying standby control file

output file name=/oraprdsw/software/oracle/product/11gR2/dbs/snapcf_SLCC.f tag=TAG20170829T143029 RECID=1 STAMP=953303430

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

Finished backup at 29-AUG-17

Starting restore at 29-AUG-17

allocated channel: ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: SID=1053 device type=DISK

channel ORA_AUX_DISK_1: copied control file copy

Finished restore at 29-AUG-17

contents of Memory Script:

{

sql clone 'alter database mount standby database';

}

executing Memory Script

sql statement: alter database mount standby database

RMAN-05538: WARNING: implicitly using DB_FILE_NAME_CONVERT

contents of Memory Script:

{

set newname for tempfile 1 to

"/SLCC/u01/temp_SLCC_01.dbf";

switch clone tempfile all;

set newname for datafile 1 to

"/SLCC/u01/syst_SLCC_01.dbf";

set newname for datafile 2 to

"/SLCC/u01/syst_SLCC_02.dbf";

set newname for datafile 3 to

"/SLCC/u01/sysaux_SLCC_01.dbf";

set newname for datafile 4 to

"/SLCC/u01/sysaux_SLCC_02.dbf";

set newname for datafile 5 to

"/SLCC/u01/undo_SLCC_01.dbf";

set newname for datafile 6 to

"/SLCC/u01/undo_SLCC_02.dbf";

set newname for datafile 7 to

"/SLCC/u01/undo_SLCC_03.dbf";

set newname for datafile 8 to

"/SLCC/u01/undo_SLCC_04.dbf";

set newname for datafile 9 to

"/SLCC/u01/undo_SLCC_05.dbf";

set newname for datafile 10 to

"/SLCC/u01/axiom_SLCC_01.dbf";

set newname for datafile 11 to

"/SLCC/u01/banaq_SLCC_01.dbf";

set newname for datafile 12 to

"/SLCC/u01/baniam_SLCC_01.dbf";

set newname for datafile 13 to

"/SLCC/u01/bankencrypt_SLCC_01.dbf";

set newname for datafile 14 to

"/SLCC/u01/banlob_SLCC_01.dbf";

set newname for datafile 15 to

"/SLCC/u01/bepevents_SLCC_01.dbf";

set newname for datafile 16 to

"/SLCC/u01/bnixmgr_SLCC_01.dbf";

set newname for datafile 17 to

"/SLCC/u01/brio_SLCC_01.dbf";

set newname for datafile 18 to

"/SLCC/u01/brio_SLCC_02.dbf";

set newname for datafile 19 to

"/SLCC/u01/CASHNET_SLCC_01.dbf";

set newname for datafile 20 to

"/SLCC/u01/cleaf_SLCC_01.dbf";

set newname for datafile 21 to

"/SLCC/u01/clnd_SLCC_01.dbf";

set newname for datafile 22 to

"/SLCC/u01/clnx_SLCC_01.dbf";

set newname for datafile 23 to

"/SLCC/u01/conver_SLCC_01.dbf";

set newname for datafile 24 to

"/SLCC/u01/darsdat_SLCC_01.dbf";

set newname for datafile 25 to

"/SLCC/u01/darsdat_SLCC_02.dbf";

set newname for datafile 26 to

"/SLCC/u01/darsdat_SLCC_03.dbf";

set newname for datafile 27 to

"/SLCC/u01/darsdat_SLCC_04.dbf";

set newname for datafile 28 to

"/SLCC/u01/darsdat_SLCC_05.dbf";

set newname for datafile 29 to

"/SLCC/u01/darsdat_SLCC_06.dbf";

set newname for datafile 30 to

"/SLCC/u01/ETRANS_SLCC_01.dbf";

set newname for datafile 31 to

"/SLCC/u01/fimdat_SLCC_01.dbf";

set newname for datafile 32 to

"/SLCC/u01/fimdat_SLCC_02.dbf";

set newname for datafile 33 to

"/SLCC/u01/fimndx_SLCC_01.dbf";

set newname for datafile 34 to

"/SLCC/u01/gendat_SLCC_01.dbf";

set newname for datafile 35 to

"/SLCC/u01/gendat_SLCC_02.dbf";

set newname for datafile 36 to

"/SLCC/u01/gendat_SLCC_03.dbf";

set newname for datafile 37 to

"/SLCC/u01/genndx_SLCC_01.dbf";

set newname for datafile 38 to

"/SLCC/u01/genndx_SLCC_02.dbf";

set newname for datafile 39 to

"/SLCC/u01/hrsdat_SLCC_01.dbf";

set newname for datafile 40 to

"/SLCC/u01/hrsdat_SLCC_02.dbf";

set newname for datafile 41 to

"/SLCC/u01/hrsdat_SLCC_03.dbf";

set newname for datafile 42 to

"/SLCC/u01/hrsdat_SLCC_04.dbf";

set newname for datafile 43 to

"/SLCC/u01/hrsdat_SLCC_05.dbf";

set newname for datafile 44 to

"/SLCC/u01/hrsdat_SLCC_06.dbf";

set newname for datafile 45 to

"/SLCC/u01/hrsdat_SLCC_07.dbf";

set newname for datafile 46 to

"/SLCC/u01/hrsdat_SLCC_08.dbf";

set newname for datafile 47 to

"/SLCC/u01/hrsndx_SLCC_01.dbf";

set newname for datafile 48 to

"/SLCC/u01/hrsndx_SLCC_02.dbf";

set newname for datafile 49 to

"/SLCC/u01/hrsndx_SLCC_03.dbf";

set newname for datafile 50 to

"/SLCC/u01/hrsndx_SLCC_04.dbf";

set newname for datafile 51 to

"/SLCC/u01/hrsndx_SLCC_05.dbf";

set newname for datafile 52 to

"/SLCC/u01/hrsndx_SLCC_06.dbf";

set newname for datafile 53 to

"/SLCC/u01/hrsndx_SLCC_07.dbf";

set newname for datafile 54 to

"/SLCC/u01/hrsndx_SLCC_08.dbf";

set newname for datafile 55 to

"/SLCC/u01/identmgr_SLCC_01.dbf";

set newname for datafile 56 to

"/SLCC/u01/lgsatndx_SLCC_01.dbf";

set newname for datafile 57 to

"/SLCC/u01/lgsatndx_SLCC_02.dbf";

set newname for datafile 58 to

"/SLCC/u01/mobile_SLCC_01.dbf";

set newname for datafile 59 to

"/SLCC/u01/nelnet_SLCC_01.dbf";

set newname for datafile 60 to

"/SLCC/u01/nelnetndx_SLCC_01.dbf";

set newname for datafile 61 to

"/SLCC/u01/opm_SLCC_01.dbf";

set newname for datafile 62 to

"/SLCC/u01/orbld_SLCC_01.dbf";

set newname for datafile 63 to

"/SLCC/u01/orblx_SLCC_01.dbf";

set newname for datafile 64 to

"/SLCC/u01/orbtd_SLCC_01.dbf";

set newname for datafile 65 to

"/SLCC/u01/orbtx_SLCC_01.dbf";

set newname for datafile 66 to

"/SLCC/u01/PEOPLEADM_SLCC_01.dbf";

set newname for datafile 67 to

"/SLCC/u01/prod_SLCC_01.dbf";

set newname for datafile 68 to

"/SLCC/u01/prolob_SLCC_01.dbf";

set newname for datafile 69 to

"/SLCC/u01/prox_SLCC_01.dbf";

set newname for datafile 70 to

"/SLCC/u01/resdat_SLCC_01.dbf";

set newname for datafile 71 to

"/SLCC/u01/resdat_SLCC_02.dbf";

set newname for datafile 72 to

"/SLCC/u01/resdat_SLCC_03.dbf";

set newname for datafile 73 to

"/SLCC/u01/resdat_SLCC_04.dbf";

set newname for datafile 74 to

"/SLCC/u01/resdat_SLCC_05.dbf";

set newname for datafile 75 to

"/SLCC/u01/resndx_SLCC_01.dbf";

set newname for datafile 76 to

"/SLCC/u01/resndx_SLCC_02.dbf";

set newname for datafile 77 to

"/SLCC/u01/satdat_SLCC_01.dbf";

set newname for datafile 78 to

"/SLCC/u01/satdat_SLCC_02.dbf";

set newname for datafile 79 to

"/SLCC/u01/satdat_SLCC_03.dbf";

set newname for datafile 80 to

"/SLCC/u01/satdat_SLCC_04.dbf";

set newname for datafile 81 to

"/SLCC/u01/satdat_SLCC_05.dbf";

set newname for datafile 82 to

"/SLCC/u01/satdat_SLCC_06.dbf";

set newname for datafile 83 to

"/SLCC/u01/satdat_SLCC_07.dbf";

set newname for datafile 84 to

"/SLCC/u01/satdat_SLCC_08.dbf";

set newname for datafile 85 to

"/SLCC/u01/satdat_SLCC_09.dbf";

set newname for datafile 86 to

"/SLCC/u01/satdat_SLCC_10.dbf";

set newname for datafile 87 to

"/SLCC/u01/satdat_SLCC_11.dbf";

set newname for datafile 88 to

"/SLCC/u01/satndx_SLCC_01.dbf";

set newname for datafile 89 to

"/SLCC/u01/satndx_SLCC_02.dbf";

set newname for datafile 90 to

"/SLCC/u01/satndx_SLCC_03.dbf";

set newname for datafile 91 to

"/SLCC/u01/satndx_SLCC_04.dbf";

set newname for datafile 92 to

"/SLCC/u01/satndx_SLCC_05.dbf";

set newname for datafile 93 to

"/SLCC/u01/satndx_SLCC_06.dbf";

set newname for datafile 94 to

"/SLCC/u01/satndx_SLCC_07.dbf";

set newname for datafile 95 to

"/SLCC/u01/smndx_SLCC_01.dbf";

set newname for datafile 96 to

"/SLCC/u01/smndx_SLCC_02.dbf";

set newname for datafile 97 to

"/SLCC/u01/smndx_SLCC_03.dbf";

set newname for datafile 98 to

"/SLCC/u01/smndx_SLCC_04.dbf";

set newname for datafile 99 to

"/SLCC/u01/smndx_SLCC_05.dbf";

set newname for datafile 100 to

"/SLCC/u01/smndx_SLCC_06.dbf";

set newname for datafile 101 to

"/SLCC/u01/smdat_SLCC_01.dbf";

set newname for datafile 102 to

"/SLCC/u01/smdat_SLCC_02.dbf";

set newname for datafile 103 to

"/SLCC/u01/smdat_SLCC_03.dbf";

set newname for datafile 104 to

"/SLCC/u01/smdat_SLCC_04.dbf";

set newname for datafile 105 to

"/SLCC/u01/smdat_SLCC_05.dbf";

set newname for datafile 106 to

"/SLCC/u01/smdat_SLCC_06.dbf";

set newname for datafile 107 to

"/SLCC/u01/smdat_SLCC_07.dbf";

set newname for datafile 108 to

"/SLCC/u01/smdat_SLCC_08.dbf";

set newname for datafile 109 to

"/SLCC/u01/smdat_SLCC_09.dbf";

set newname for datafile 110 to

"/SLCC/u01/smdat_SLCC_10.dbf";

set newname for datafile 111 to

"/SLCC/u01/smdat_SLCC_11.dbf";

set newname for datafile 112 to

"/SLCC/u01/smdat_SLCC_12.dbf";

set newname for datafile 113 to

"/SLCC/u01/smdat_SLCC_13.dbf";

set newname for datafile 114 to

"/SLCC/u01/smdat_SLCC_14.dbf";

set newname for datafile 115 to

"/SLCC/u01/smdat_SLCC_15.dbf";

set newname for datafile 116 to

"/SLCC/u01/smdat_SLCC_16.dbf";

set newname for datafile 117 to

"/SLCC/u01/smdat_SLCC_17.dbf";

set newname for datafile 118 to

"/SLCC/u01/smdat_SLCC_18.dbf";

set newname for datafile 119 to

"/SLCC/u01/smdat_SLCC_19.dbf";

set newname for datafile 120 to

"/SLCC/u01/smdat_SLCC_20.dbf";

set newname for datafile 121 to

"/SLCC/u01/smdat_SLCC_21.dbf";

set newname for datafile 122 to

"/SLCC/u01/smdat_SLCC_22.dbf";

set newname for datafile 123 to

"/SLCC/u01/spencrypt_SLCC_01.dbf";

set newname for datafile 124 to

"/SLCC/u01/sphrencrypt_SLCC_01.dbf";

set newname for datafile 125 to

"/SLCC/u01/ssomgr_SLCC_01.dbf";

set newname for datafile 126 to

"/SLCC/u01/tasdat_SLCC_01.dbf";

set newname for datafile 127 to

"/SLCC/u01/tasdat_SLCC_02.dbf";

set newname for datafile 128 to

"/SLCC/u01/tasdat_SLCC_03.dbf";

set newname for datafile 129 to

"/SLCC/u01/tasndx_SLCC_01.dbf";

set newname for datafile 130 to

"/SLCC/u01/tasndx_SLCC_02.dbf";

set newname for datafile 131 to

"/SLCC/u01/tasndx_SLCC_03.dbf";

set newname for datafile 132 to

"/SLCC/u01/tool_SLCC_01.dbf";

set newname for datafile 133 to

"/SLCC/u01/trndat_SLCC_01.dbf";

set newname for datafile 134 to

"/SLCC/u01/trndat_SLCC_02.dbf";

set newname for datafile 135 to

"/SLCC/u01/trndat_SLCC_03.dbf";

set newname for datafile 136 to

"/SLCC/u01/trndat_SLCC_04.dbf";

set newname for datafile 137 to

"/SLCC/u01/trndat_SLCC_05.dbf";

set newname for datafile 138 to

"/SLCC/u01/trndat_SLCC_06.dbf";

set newname for datafile 139 to

"/SLCC/u01/trnndx_SLCC_01.dbf";

set newname for datafile 140 to

"/SLCC/u01/trnndx_SLCC_02.dbf";

set newname for datafile 141 to

"/SLCC/u01/trnndx_SLCC_03.dbf";

set newname for datafile 142 to

"/SLCC/u01/trnndx_SLCC_04.dbf";

set newname for datafile 143 to

"/SLCC/u01/trnndx_SLCC_05.dbf";

set newname for datafile 144 to

"/SLCC/u01/trnndx_SLCC_06.dbf";

set newname for datafile 145 to

"/SLCC/u01/trnndx_SLCC_07.dbf";

set newname for datafile 146 to

"/SLCC/u01/user_SLCC_01.dbf";

set newname for datafile 147 to

"/SLCC/u01/user_SLCC_02.dbf";

set newname for datafile 148 to

"/SLCC/u01/workflow_SLCC_01.dbf";

set newname for datafile 149 to

"/SLCC/u01/workflow_SLCC_02.dbf";

set newname for datafile 150 to

"/SLCC/u01/workflow_SLCC_03.dbf";

set newname for datafile 151 to

"/SLCC/u01/workflow_SLCC_04.dbf";

set newname for datafile 152 to

"/SLCC/u01/workflow_SLCC_05.dbf";

set newname for datafile 153 to

"/SLCC/u01/workflow_SLCC_06.dbf";

set newname for datafile 154 to

"/SLCC/u01/workflow_SLCC_07.dbf";

set newname for datafile 155 to

"/SLCC/u01/workflow_SLCC_08.dbf";

backup as copy reuse

datafile 1 auxiliary format

"/SLCC/u01/syst_SLCC_01.dbf" datafile

2 auxiliary format

"/SLCC/u01/syst_SLCC_02.dbf" datafile

3 auxiliary format

"/SLCC/u01/sysaux_SLCC_01.dbf" datafile

4 auxiliary format

"/SLCC/u01/sysaux_SLCC_02.dbf" datafile

5 auxiliary format

"/SLCC/u01/undo_SLCC_01.dbf" datafile

6 auxiliary format

"/SLCC/u01/undo_SLCC_02.dbf" datafile

7 auxiliary format

"/SLCC/u01/undo_SLCC_03.dbf" datafile

8 auxiliary format

"/SLCC/u01/undo_SLCC_04.dbf" datafile

9 auxiliary format

"/SLCC/u01/undo_SLCC_05.dbf" datafile

10 auxiliary format

"/SLCC/u01/axiom_SLCC_01.dbf" datafile

11 auxiliary format

"/SLCC/u01/banaq_SLCC_01.dbf" datafile

12 auxiliary format

"/SLCC/u01/baniam_SLCC_01.dbf" datafile

13 auxiliary format

"/SLCC/u01/bankencrypt_SLCC_01.dbf" datafile

14 auxiliary format

"/SLCC/u01/banlob_SLCC_01.dbf" datafile

15 auxiliary format

"/SLCC/u01/bepevents_SLCC_01.dbf" datafile

16 auxiliary format

"/SLCC/u01/bnixmgr_SLCC_01.dbf" datafile

17 auxiliary format

"/SLCC/u01/brio_SLCC_01.dbf" datafile

18 auxiliary format

"/SLCC/u01/brio_SLCC_02.dbf" datafile

19 auxiliary format

"/SLCC/u01/CASHNET_SLCC_01.dbf" datafile

20 auxiliary format

"/SLCC/u01/cleaf_SLCC_01.dbf" datafile

21 auxiliary format

"/SLCC/u01/clnd_SLCC_01.dbf" datafile

22 auxiliary format

"/SLCC/u01/clnx_SLCC_01.dbf" datafile

23 auxiliary format

"/SLCC/u01/conver_SLCC_01.dbf" datafile

24 auxiliary format

"/SLCC/u01/darsdat_SLCC_01.dbf" datafile

25 auxiliary format

"/SLCC/u01/darsdat_SLCC_02.dbf" datafile

26 auxiliary format

"/SLCC/u01/darsdat_SLCC_03.dbf" datafile

27 auxiliary format

"/SLCC/u01/darsdat_SLCC_04.dbf" datafile

28 auxiliary format

"/SLCC/u01/darsdat_SLCC_05.dbf" datafile

29 auxiliary format

"/SLCC/u01/darsdat_SLCC_06.dbf" datafile

30 auxiliary format

"/SLCC/u01/ETRANS_SLCC_01.dbf" datafile

31 auxiliary format

"/SLCC/u01/fimdat_SLCC_01.dbf" datafile

32 auxiliary format

"/SLCC/u01/fimdat_SLCC_02.dbf" datafile

33 auxiliary format

"/SLCC/u01/fimndx_SLCC_01.dbf" datafile

34 auxiliary format

"/SLCC/u01/gendat_SLCC_01.dbf" datafile

35 auxiliary format

"/SLCC/u01/gendat_SLCC_02.dbf" datafile

36 auxiliary format

"/SLCC/u01/gendat_SLCC_03.dbf" datafile

37 auxiliary format

"/SLCC/u01/genndx_SLCC_01.dbf" datafile

38 auxiliary format

"/SLCC/u01/genndx_SLCC_02.dbf" datafile

39 auxiliary format

"/SLCC/u01/hrsdat_SLCC_01.dbf" datafile

40 auxiliary format

"/SLCC/u01/hrsdat_SLCC_02.dbf" datafile

41 auxiliary format

"/SLCC/u01/hrsdat_SLCC_03.dbf" datafile

42 auxiliary format

"/SLCC/u01/hrsdat_SLCC_04.dbf" datafile

43 auxiliary format

"/SLCC/u01/hrsdat_SLCC_05.dbf" datafile

44 auxiliary format

"/SLCC/u01/hrsdat_SLCC_06.dbf" datafile

45 auxiliary format

"/SLCC/u01/hrsdat_SLCC_07.dbf" datafile

46 auxiliary format

"/SLCC/u01/hrsdat_SLCC_08.dbf" datafile

47 auxiliary format

"/SLCC/u01/hrsndx_SLCC_01.dbf" datafile

48 auxiliary format

"/SLCC/u01/hrsndx_SLCC_02.dbf" datafile

49 auxiliary format

"/SLCC/u01/hrsndx_SLCC_03.dbf" datafile

50 auxiliary format

"/SLCC/u01/hrsndx_SLCC_04.dbf" datafile

51 auxiliary format

"/SLCC/u01/hrsndx_SLCC_05.dbf" datafile

52 auxiliary format

"/SLCC/u01/hrsndx_SLCC_06.dbf" datafile

53 auxiliary format

"/SLCC/u01/hrsndx_SLCC_07.dbf" datafile

54 auxiliary format

"/SLCC/u01/hrsndx_SLCC_08.dbf" datafile

55 auxiliary format

"/SLCC/u01/identmgr_SLCC_01.dbf" datafile

56 auxiliary format

"/SLCC/u01/lgsatndx_SLCC_01.dbf" datafile

57 auxiliary format

"/SLCC/u01/lgsatndx_SLCC_02.dbf" datafile

58 auxiliary format

"/SLCC/u01/mobile_SLCC_01.dbf" datafile

59 auxiliary format

"/SLCC/u01/nelnet_SLCC_01.dbf" datafile

60 auxiliary format

"/SLCC/u01/nelnetndx_SLCC_01.dbf" datafile

61 auxiliary format

"/SLCC/u01/opm_SLCC_01.dbf" datafile

62 auxiliary format

"/SLCC/u01/orbld_SLCC_01.dbf" datafile

63 auxiliary format

"/SLCC/u01/orblx_SLCC_01.dbf" datafile

64 auxiliary format

"/SLCC/u01/orbtd_SLCC_01.dbf" datafile

65 auxiliary format

"/SLCC/u01/orbtx_SLCC_01.dbf" datafile

66 auxiliary format

"/SLCC/u01/PEOPLEADM_SLCC_01.dbf" datafile

67 auxiliary format

"/SLCC/u01/prod_SLCC_01.dbf" datafile

68 auxiliary format

"/SLCC/u01/prolob_SLCC_01.dbf" datafile

69 auxiliary format

"/SLCC/u01/prox_SLCC_01.dbf" datafile

70 auxiliary format

"/SLCC/u01/resdat_SLCC_01.dbf" datafile

71 auxiliary format

"/SLCC/u01/resdat_SLCC_02.dbf" datafile

72 auxiliary format

"/SLCC/u01/resdat_SLCC_03.dbf" datafile

73 auxiliary format

"/SLCC/u01/resdat_SLCC_04.dbf" datafile

74 auxiliary format

"/SLCC/u01/resdat_SLCC_05.dbf" datafile

75 auxiliary format

"/SLCC/u01/resndx_SLCC_01.dbf" datafile

76 auxiliary format

"/SLCC/u01/resndx_SLCC_02.dbf" datafile

77 auxiliary format

"/SLCC/u01/satdat_SLCC_01.dbf" datafile

78 auxiliary format

"/SLCC/u01/satdat_SLCC_02.dbf" datafile

79 auxiliary format

"/SLCC/u01/satdat_SLCC_03.dbf" datafile

80 auxiliary format

"/SLCC/u01/satdat_SLCC_04.dbf" datafile

81 auxiliary format

"/SLCC/u01/satdat_SLCC_05.dbf" datafile

82 auxiliary format

"/SLCC/u01/satdat_SLCC_06.dbf" datafile

83 auxiliary format

"/SLCC/u01/satdat_SLCC_07.dbf" datafile

84 auxiliary format

"/SLCC/u01/satdat_SLCC_08.dbf" datafile

85 auxiliary format

"/SLCC/u01/satdat_SLCC_09.dbf" datafile

86 auxiliary format

"/SLCC/u01/satdat_SLCC_10.dbf" datafile

87 auxiliary format

"/SLCC/u01/satdat_SLCC_11.dbf" datafile

88 auxiliary format

"/SLCC/u01/satndx_SLCC_01.dbf" datafile

89 auxiliary format

"/SLCC/u01/satndx_SLCC_02.dbf" datafile

90 auxiliary format

"/SLCC/u01/satndx_SLCC_03.dbf" datafile

91 auxiliary format

"/SLCC/u01/satndx_SLCC_04.dbf" datafile

92 auxiliary format

"/SLCC/u01/satndx_SLCC_05.dbf" datafile

93 auxiliary format

"/SLCC/u01/satndx_SLCC_06.dbf" datafile

94 auxiliary format

"/SLCC/u01/satndx_SLCC_07.dbf" datafile

95 auxiliary format

"/SLCC/u01/smndx_SLCC_01.dbf" datafile

96 auxiliary format

"/SLCC/u01/smndx_SLCC_02.dbf" datafile

97 auxiliary format

"/SLCC/u01/smndx_SLCC_03.dbf" datafile

98 auxiliary format

"/SLCC/u01/smndx_SLCC_04.dbf" datafile

99 auxiliary format

"/SLCC/u01/smndx_SLCC_05.dbf" datafile

100 auxiliary format

"/SLCC/u01/smndx_SLCC_06.dbf" datafile

101 auxiliary format

"/SLCC/u01/smdat_SLCC_01.dbf" datafile

102 auxiliary format

"/SLCC/u01/smdat_SLCC_02.dbf" datafile

103 auxiliary format

"/SLCC/u01/smdat_SLCC_03.dbf" datafile

104 auxiliary format

"/SLCC/u01/smdat_SLCC_04.dbf" datafile

105 auxiliary format

"/SLCC/u01/smdat_SLCC_05.dbf" datafile

106 auxiliary format

"/SLCC/u01/smdat_SLCC_06.dbf" datafile

107 auxiliary format

"/SLCC/u01/smdat_SLCC_07.dbf" datafile

108 auxiliary format

"/SLCC/u01/smdat_SLCC_08.dbf" datafile

109 auxiliary format

"/SLCC/u01/smdat_SLCC_09.dbf" datafile

110 auxiliary format

"/SLCC/u01/smdat_SLCC_10.dbf" datafile

111 auxiliary format

"/SLCC/u01/smdat_SLCC_11.dbf" datafile

112 auxiliary format

"/SLCC/u01/smdat_SLCC_12.dbf" datafile

113 auxiliary format

"/SLCC/u01/smdat_SLCC_13.dbf" datafile

114 auxiliary format

"/SLCC/u01/smdat_SLCC_14.dbf" datafile

115 auxiliary format

"/SLCC/u01/smdat_SLCC_15.dbf" datafile

116 auxiliary format

"/SLCC/u01/smdat_SLCC_16.dbf" datafile

117 auxiliary format

"/SLCC/u01/smdat_SLCC_17.dbf" datafile

118 auxiliary format

"/SLCC/u01/smdat_SLCC_18.dbf" datafile

119 auxiliary format

"/SLCC/u01/smdat_SLCC_19.dbf" datafile

120 auxiliary format

"/SLCC/u01/smdat_SLCC_20.dbf" datafile

121 auxiliary format

"/SLCC/u01/smdat_SLCC_21.dbf" datafile

122 auxiliary format

"/SLCC/u01/smdat_SLCC_22.dbf" datafile

123 auxiliary format

"/SLCC/u01/spencrypt_SLCC_01.dbf" datafile

124 auxiliary format

"/SLCC/u01/sphrencrypt_SLCC_01.dbf" datafile

125 auxiliary format

"/SLCC/u01/ssomgr_SLCC_01.dbf" datafile

126 auxiliary format

"/SLCC/u01/tasdat_SLCC_01.dbf" datafile

127 auxiliary format

"/SLCC/u01/tasdat_SLCC_02.dbf" datafile

128 auxiliary format

"/SLCC/u01/tasdat_SLCC_03.dbf" datafile

129 auxiliary format

"/SLCC/u01/tasndx_SLCC_01.dbf" datafile

130 auxiliary format

"/SLCC/u01/tasndx_SLCC_02.dbf" datafile

131 auxiliary format

"/SLCC/u01/tasndx_SLCC_03.dbf" datafile

132 auxiliary format

"/SLCC/u01/tool_SLCC_01.dbf" datafile

133 auxiliary format

"/SLCC/u01/trndat_SLCC_01.dbf" datafile

134 auxiliary format

"/SLCC/u01/trndat_SLCC_02.dbf" datafile

135 auxiliary format

"/SLCC/u01/trndat_SLCC_03.dbf" datafile

136 auxiliary format

"/SLCC/u01/trndat_SLCC_04.dbf" datafile

137 auxiliary format

"/SLCC/u01/trndat_SLCC_05.dbf" datafile

138 auxiliary format

"/SLCC/u01/trndat_SLCC_06.dbf" datafile

139 auxiliary format

"/SLCC/u01/trnndx_SLCC_01.dbf" datafile

140 auxiliary format

"/SLCC/u01/trnndx_SLCC_02.dbf" datafile

141 auxiliary format

"/SLCC/u01/trnndx_SLCC_03.dbf" datafile

142 auxiliary format

"/SLCC/u01/trnndx_SLCC_04.dbf" datafile

143 auxiliary format

"/SLCC/u01/trnndx_SLCC_05.dbf" datafile

144 auxiliary format

"/SLCC/u01/trnndx_SLCC_06.dbf" datafile

145 auxiliary format

"/SLCC/u01/trnndx_SLCC_07.dbf" datafile

146 auxiliary format

"/SLCC/u01/user_SLCC_01.dbf" datafile

147 auxiliary format

"/SLCC/u01/user_SLCC_02.dbf" datafile

148 auxiliary format

"/SLCC/u01/workflow_SLCC_01.dbf" datafile

149 auxiliary format

"/SLCC/u01/workflow_SLCC_02.dbf" datafile

150 auxiliary format

"/SLCC/u01/workflow_SLCC_03.dbf" datafile

151 auxiliary format

"/SLCC/u01/workflow_SLCC_04.dbf" datafile

152 auxiliary format

"/SLCC/u01/workflow_SLCC_05.dbf" datafile

153 auxiliary format

"/SLCC/u01/workflow_SLCC_06.dbf" datafile

154 auxiliary format

"/SLCC/u01/workflow_SLCC_07.dbf" datafile

155 auxiliary format

"/SLCC/u01/workflow_SLCC_08.dbf" ;

sql 'alter system archive log current';

}

executing Memory Script

executing command: SET NEWNAME

renamed tempfile 1 to /SLCC/u01/temp_SLCC_01.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

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

Starting backup at 29-AUG-17

using channel ORA_DISK_1

channel ORA_DISK_1: starting datafile copy

input datafile file number=00001 name=/SLCC/u01/syst_SLCC_01.dbf

output file name=/SLCC/u01/syst_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03

channel ORA_DISK_1: starting datafile copy

input datafile file number=00003 name=/SLCC/u01/sysaux_SLCC_01.dbf

output file name=/SLCC/u01/sysaux_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03

channel ORA_DISK_1: starting datafile copy

input datafile file number=00005 name=/SLCC/u01/undo_SLCC_01.dbf

output file name=/SLCC/u01/undo_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03

channel ORA_DISK_1: starting datafile copy

input datafile file number=00002 name=/SLCC/u01/syst_SLCC_02.dbf

output file name=/SLCC/u01/syst_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00004 name=/SLCC/u01/sysaux_SLCC_02.dbf

output file name=/SLCC/u01/sysaux_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00006 name=/SLCC/u01/undo_SLCC_02.dbf

output file name=/SLCC/u01/undo_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00007 name=/SLCC/u01/undo_SLCC_03.dbf

output file name=/SLCC/u01/undo_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00008 name=/SLCC/u01/undo_SLCC_04.dbf

output file name=/SLCC/u01/undo_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00009 name=/SLCC/u01/undo_SLCC_05.dbf

output file name=/SLCC/u01/undo_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00010 name=/SLCC/u01/axiom_SLCC_01.dbf

output file name=/SLCC/u01/axiom_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00011 name=/SLCC/u01/banaq_SLCC_01.dbf

output file name=/SLCC/u01/banaq_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00012 name=/SLCC/u01/baniam_SLCC_01.dbf

output file name=/SLCC/u01/baniam_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00013 name=/SLCC/u01/bankencrypt_SLCC_01.dbf

output file name=/SLCC/u01/bankencrypt_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00014 name=/SLCC/u01/banlob_SLCC_01.dbf

output file name=/SLCC/u01/banlob_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00015 name=/SLCC/u01/bepevents_SLCC_01.dbf

output file name=/SLCC/u01/bepevents_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00016 name=/SLCC/u01/bnixmgr_SLCC_01.dbf

output file name=/SLCC/u01/bnixmgr_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00017 name=/SLCC/u01/brio_SLCC_01.dbf

output file name=/SLCC/u01/brio_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00018 name=/SLCC/u01/brio_SLCC_02.dbf

output file name=/SLCC/u01/brio_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00019 name=/SLCC/u01/CASHNET_SLCC_01.dbf

output file name=/SLCC/u01/CASHNET_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00020 name=/SLCC/u01/cleaf_SLCC_01.dbf

output file name=/SLCC/u01/cleaf_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00021 name=/SLCC/u01/clnd_SLCC_01.dbf

output file name=/SLCC/u01/clnd_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00022 name=/SLCC/u01/clnx_SLCC_01.dbf

output file name=/SLCC/u01/clnx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00023 name=/SLCC/u01/conver_SLCC_01.dbf

output file name=/SLCC/u01/conver_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00024 name=/SLCC/u01/darsdat_SLCC_01.dbf

output file name=/SLCC/u01/darsdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00025 name=/SLCC/u01/darsdat_SLCC_02.dbf

output file name=/SLCC/u01/darsdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00026 name=/SLCC/u01/darsdat_SLCC_03.dbf

output file name=/SLCC/u01/darsdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00027 name=/SLCC/u01/darsdat_SLCC_04.dbf

output file name=/SLCC/u01/darsdat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00028 name=/SLCC/u01/darsdat_SLCC_05.dbf

output file name=/SLCC/u01/darsdat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00029 name=/SLCC/u01/darsdat_SLCC_06.dbf

output file name=/SLCC/u01/darsdat_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00030 name=/SLCC/u01/ETRANS_SLCC_01.dbf

output file name=/SLCC/u01/ETRANS_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00031 name=/SLCC/u01/fimdat_SLCC_01.dbf

output file name=/SLCC/u01/fimdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00032 name=/SLCC/u01/fimdat_SLCC_02.dbf

output file name=/SLCC/u01/fimdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00033 name=/SLCC/u01/fimndx_SLCC_01.dbf

output file name=/SLCC/u01/fimndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00034 name=/SLCC/u01/gendat_SLCC_01.dbf

output file name=/SLCC/u01/gendat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00035 name=/SLCC/u01/gendat_SLCC_02.dbf

output file name=/SLCC/u01/gendat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00036 name=/SLCC/u01/gendat_SLCC_03.dbf

output file name=/SLCC/u01/gendat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00037 name=/SLCC/u01/genndx_SLCC_01.dbf

output file name=/SLCC/u01/genndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00038 name=/SLCC/u01/genndx_SLCC_02.dbf

output file name=/SLCC/u01/genndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00039 name=/SLCC/u01/hrsdat_SLCC_01.dbf

output file name=/SLCC/u01/hrsdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00040 name=/SLCC/u01/hrsdat_SLCC_02.dbf

output file name=/SLCC/u01/hrsdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00041 name=/SLCC/u01/hrsdat_SLCC_03.dbf

output file name=/SLCC/u01/hrsdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00042 name=/SLCC/u01/hrsdat_SLCC_04.dbf

output file name=/SLCC/u01/hrsdat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00043 name=/SLCC/u01/hrsdat_SLCC_05.dbf

output file name=/SLCC/u01/hrsdat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00044 name=/SLCC/u01/hrsdat_SLCC_06.dbf

output file name=/SLCC/u01/hrsdat_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00045 name=/SLCC/u01/hrsdat_SLCC_07.dbf

output file name=/SLCC/u01/hrsdat_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00046 name=/SLCC/u01/hrsdat_SLCC_08.dbf

output file name=/SLCC/u01/hrsdat_SLCC_08.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00047 name=/SLCC/u01/hrsndx_SLCC_01.dbf

output file name=/SLCC/u01/hrsndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00048 name=/SLCC/u01/hrsndx_SLCC_02.dbf

output file name=/SLCC/u01/hrsndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00049 name=/SLCC/u01/hrsndx_SLCC_03.dbf

output file name=/SLCC/u01/hrsndx_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00050 name=/SLCC/u01/hrsndx_SLCC_04.dbf

output file name=/SLCC/u01/hrsndx_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00051 name=/SLCC/u01/hrsndx_SLCC_05.dbf

output file name=/SLCC/u01/hrsndx_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00052 name=/SLCC/u01/hrsndx_SLCC_06.dbf

output file name=/SLCC/u01/hrsndx_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00053 name=/SLCC/u01/hrsndx_SLCC_07.dbf

output file name=/SLCC/u01/hrsndx_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00054 name=/SLCC/u01/hrsndx_SLCC_08.dbf

output file name=/SLCC/u01/hrsndx_SLCC_08.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00055 name=/SLCC/u01/identmgr_SLCC_01.dbf

output file name=/SLCC/u01/identmgr_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00056 name=/SLCC/u01/lgsatndx_SLCC_01.dbf

output file name=/SLCC/u01/lgsatndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00057 name=/SLCC/u01/lgsatndx_SLCC_02.dbf

output file name=/SLCC/u01/lgsatndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00058 name=/SLCC/u01/mobile_SLCC_01.dbf

output file name=/SLCC/u01/mobile_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00059 name=/SLCC/u01/nelnet_SLCC_01.dbf

output file name=/SLCC/u01/nelnet_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00060 name=/SLCC/u01/nelnetndx_SLCC_01.dbf

output file name=/SLCC/u01/nelnetndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00061 name=/SLCC/u01/opm_SLCC_01.dbf

output file name=/SLCC/u01/opm_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00062 name=/SLCC/u01/orbld_SLCC_01.dbf

output file name=/SLCC/u01/orbld_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00063 name=/SLCC/u01/orblx_SLCC_01.dbf

output file name=/SLCC/u01/orblx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00064 name=/SLCC/u01/orbtd_SLCC_01.dbf

output file name=/SLCC/u01/orbtd_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00065 name=/SLCC/u01/orbtx_SLCC_01.dbf

output file name=/SLCC/u01/orbtx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00066 name=/SLCC/u01/PEOPLEADM_SLCC_01.dbf

output file name=/SLCC/u01/PEOPLEADM_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00067 name=/SLCC/u01/prod_SLCC_01.dbf

output file name=/SLCC/u01/prod_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00068 name=/SLCC/u01/prolob_SLCC_01.dbf

output file name=/SLCC/u01/prolob_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00069 name=/SLCC/u01/prox_SLCC_01.dbf

output file name=/SLCC/u01/prox_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00070 name=/SLCC/u01/resdat_SLCC_01.dbf

output file name=/SLCC/u01/resdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00071 name=/SLCC/u01/resdat_SLCC_02.dbf

output file name=/SLCC/u01/resdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00072 name=/SLCC/u01/resdat_SLCC_03.dbf

output file name=/SLCC/u01/resdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00073 name=/SLCC/u01/resdat_SLCC_04.dbf

output file name=/SLCC/u01/resdat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00074 name=/SLCC/u01/resdat_SLCC_05.dbf

output file name=/SLCC/u01/resdat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00075 name=/SLCC/u01/resndx_SLCC_01.dbf

output file name=/SLCC/u01/resndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00076 name=/SLCC/u01/resndx_SLCC_02.dbf

output file name=/SLCC/u01/resndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00077 name=/SLCC/u01/satdat_SLCC_01.dbf

output file name=/SLCC/u01/satdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00078 name=/SLCC/u01/satdat_SLCC_02.dbf

output file name=/SLCC/u01/satdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00079 name=/SLCC/u01/satdat_SLCC_03.dbf

output file name=/SLCC/u01/satdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00080 name=/SLCC/u01/satdat_SLCC_04.dbf

output file name=/SLCC/u01/satdat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00081 name=/SLCC/u01/satdat_SLCC_05.dbf

output file name=/SLCC/u01/satdat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00082 name=/SLCC/u01/satdat_SLCC_06.dbf

output file name=/SLCC/u01/satdat_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00083 name=/SLCC/u01/satdat_SLCC_07.dbf

output file name=/SLCC/u01/satdat_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00084 name=/SLCC/u01/satdat_SLCC_08.dbf

output file name=/SLCC/u01/satdat_SLCC_08.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00085 name=/SLCC/u01/satdat_SLCC_09.dbf

output file name=/SLCC/u01/satdat_SLCC_09.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00086 name=/SLCC/u01/satdat_SLCC_10.dbf

output file name=/SLCC/u01/satdat_SLCC_10.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00087 name=/SLCC/u01/satdat_SLCC_11.dbf

output file name=/SLCC/u01/satdat_SLCC_11.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00088 name=/SLCC/u01/satndx_SLCC_01.dbf

output file name=/SLCC/u01/satndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00089 name=/SLCC/u01/satndx_SLCC_02.dbf

output file name=/SLCC/u01/satndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00090 name=/SLCC/u01/satndx_SLCC_03.dbf

output file name=/SLCC/u01/satndx_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00091 name=/SLCC/u01/satndx_SLCC_04.dbf

output file name=/SLCC/u01/satndx_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00092 name=/SLCC/u01/satndx_SLCC_05.dbf

output file name=/SLCC/u01/satndx_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00093 name=/SLCC/u01/satndx_SLCC_06.dbf

output file name=/SLCC/u01/satndx_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00094 name=/SLCC/u01/satndx_SLCC_07.dbf

output file name=/SLCC/u01/satndx_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00095 name=/SLCC/u01/smndx_SLCC_01.dbf

output file name=/SLCC/u01/smndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00096 name=/SLCC/u01/smndx_SLCC_02.dbf

output file name=/SLCC/u01/smndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00097 name=/SLCC/u01/smndx_SLCC_03.dbf

output file name=/SLCC/u01/smndx_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00098 name=/SLCC/u01/smndx_SLCC_04.dbf

output file name=/SLCC/u01/smndx_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00099 name=/SLCC/u01/smndx_SLCC_05.dbf

output file name=/SLCC/u01/smndx_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00100 name=/SLCC/u01/smndx_SLCC_06.dbf

output file name=/SLCC/u01/smndx_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00101 name=/SLCC/u01/smdat_SLCC_01.dbf

output file name=/SLCC/u01/smdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00102 name=/SLCC/u01/smdat_SLCC_02.dbf

output file name=/SLCC/u01/smdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00103 name=/SLCC/u01/smdat_SLCC_03.dbf

output file name=/SLCC/u01/smdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00104 name=/SLCC/u01/smdat_SLCC_04.dbf

output file name=/SLCC/u01/smdat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00105 name=/SLCC/u01/smdat_SLCC_05.dbf

output file name=/SLCC/u01/smdat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00106 name=/SLCC/u01/smdat_SLCC_06.dbf

output file name=/SLCC/u01/smdat_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00107 name=/SLCC/u01/smdat_SLCC_07.dbf

output file name=/SLCC/u01/smdat_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00108 name=/SLCC/u01/smdat_SLCC_08.dbf

output file name=/SLCC/u01/smdat_SLCC_08.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00109 name=/SLCC/u01/smdat_SLCC_09.dbf

output file name=/SLCC/u01/smdat_SLCC_09.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00110 name=/SLCC/u01/smdat_SLCC_10.dbf

output file name=/SLCC/u01/smdat_SLCC_10.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00111 name=/SLCC/u01/smdat_SLCC_11.dbf

output file name=/SLCC/u01/smdat_SLCC_11.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00112 name=/SLCC/u01/smdat_SLCC_12.dbf

output file name=/SLCC/u01/smdat_SLCC_12.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00113 name=/SLCC/u01/smdat_SLCC_13.dbf

output file name=/SLCC/u01/smdat_SLCC_13.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00114 name=/SLCC/u01/smdat_SLCC_14.dbf

output file name=/SLCC/u01/smdat_SLCC_14.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00115 name=/SLCC/u01/smdat_SLCC_15.dbf

output file name=/SLCC/u01/smdat_SLCC_15.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00116 name=/SLCC/u01/smdat_SLCC_16.dbf

output file name=/SLCC/u01/smdat_SLCC_16.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00117 name=/SLCC/u01/smdat_SLCC_17.dbf

output file name=/SLCC/u01/smdat_SLCC_17.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00118 name=/SLCC/u01/smdat_SLCC_18.dbf

output file name=/SLCC/u01/smdat_SLCC_18.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00119 name=/SLCC/u01/smdat_SLCC_19.dbf

output file name=/SLCC/u01/smdat_SLCC_19.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00120 name=/SLCC/u01/smdat_SLCC_20.dbf

output file name=/SLCC/u01/smdat_SLCC_20.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00121 name=/SLCC/u01/smdat_SLCC_21.dbf

output file name=/SLCC/u01/smdat_SLCC_21.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00122 name=/SLCC/u01/smdat_SLCC_22.dbf

output file name=/SLCC/u01/smdat_SLCC_22.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00123 name=/SLCC/u01/spencrypt_SLCC_01.dbf

output file name=/SLCC/u01/spencrypt_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00124 name=/SLCC/u01/sphrencrypt_SLCC_01.dbf

output file name=/SLCC/u01/sphrencrypt_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00125 name=/SLCC/u01/ssomgr_SLCC_01.dbf

output file name=/SLCC/u01/ssomgr_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00126 name=/SLCC/u01/tasdat_SLCC_01.dbf

output file name=/SLCC/u01/tasdat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00127 name=/SLCC/u01/tasdat_SLCC_02.dbf

output file name=/SLCC/u01/tasdat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00128 name=/SLCC/u01/tasdat_SLCC_03.dbf

output file name=/SLCC/u01/tasdat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00129 name=/SLCC/u01/tasndx_SLCC_01.dbf

output file name=/SLCC/u01/tasndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00130 name=/SLCC/u01/tasndx_SLCC_02.dbf

output file name=/SLCC/u01/tasndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00131 name=/SLCC/u01/tasndx_SLCC_03.dbf

output file name=/SLCC/u01/tasndx_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:02

channel ORA_DISK_1: starting datafile copy

input datafile file number=00132 name=/SLCC/u01/tool_SLCC_01.dbf

output file name=/SLCC/u01/tool_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00133 name=/SLCC/u01/trndat_SLCC_01.dbf

output file name=/SLCC/u01/trndat_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00134 name=/SLCC/u01/trndat_SLCC_02.dbf

output file name=/SLCC/u01/trndat_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00135 name=/SLCC/u01/trndat_SLCC_03.dbf

output file name=/SLCC/u01/trndat_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00136 name=/SLCC/u01/trndat_SLCC_04.dbf

output file name=/SLCC/u01/trndat_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00137 name=/SLCC/u01/trndat_SLCC_05.dbf

output file name=/SLCC/u01/trndat_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00138 name=/SLCC/u01/trndat_SLCC_06.dbf

output file name=/SLCC/u01/trndat_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00139 name=/SLCC/u01/trnndx_SLCC_01.dbf

output file name=/SLCC/u01/trnndx_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00140 name=/SLCC/u01/trnndx_SLCC_02.dbf

output file name=/SLCC/u01/trnndx_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00141 name=/SLCC/u01/trnndx_SLCC_03.dbf

output file name=/SLCC/u01/trnndx_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00142 name=/SLCC/u01/trnndx_SLCC_04.dbf

output file name=/SLCC/u01/trnndx_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00143 name=/SLCC/u01/trnndx_SLCC_05.dbf

output file name=/SLCC/u01/trnndx_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00144 name=/SLCC/u01/trnndx_SLCC_06.dbf

output file name=/SLCC/u01/trnndx_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00145 name=/SLCC/u01/trnndx_SLCC_07.dbf

output file name=/SLCC/u01/trnndx_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00146 name=/SLCC/u01/user_SLCC_01.dbf

output file name=/SLCC/u01/user_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00147 name=/SLCC/u01/user_SLCC_02.dbf

output file name=/SLCC/u01/user_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00148 name=/SLCC/u01/workflow_SLCC_01.dbf

output file name=/SLCC/u01/workflow_SLCC_01.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00149 name=/SLCC/u01/workflow_SLCC_02.dbf

output file name=/SLCC/u01/workflow_SLCC_02.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00150 name=/SLCC/u01/workflow_SLCC_03.dbf

output file name=/SLCC/u01/workflow_SLCC_03.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00151 name=/SLCC/u01/workflow_SLCC_04.dbf

output file name=/SLCC/u01/workflow_SLCC_04.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00152 name=/SLCC/u01/workflow_SLCC_05.dbf

output file name=/SLCC/u01/workflow_SLCC_05.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00153 name=/SLCC/u01/workflow_SLCC_06.dbf

output file name=/SLCC/u01/workflow_SLCC_06.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00154 name=/SLCC/u01/workflow_SLCC_07.dbf

output file name=/SLCC/u01/workflow_SLCC_07.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

channel ORA_DISK_1: starting datafile copy

input datafile file number=00155 name=/SLCC/u01/workflow_SLCC_08.dbf

output file name=/SLCC/u01/workflow_SLCC_08.dbf tag=TAG20170829T143038

channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01

Finished backup at 29-AUG-17

sql statement: alter system archive log current

contents of Memory Script:

{

backup as copy reuse

archivelog like "/SLCC/u03/SLCC_62_1953220157.arc" auxiliary format

"/SLCC/u03/SLCC_62_1953220157.arc" ;

catalog clone archivelog "/SLCC/u03/SLCC_62_1953220157.arc";

switch clone datafile all;

}

executing Memory Script

Starting backup at 29-AUG-17

using channel ORA_DISK_1

channel ORA_DISK_1: starting archived log copy

input archived log thread=1 sequence=62 RECID=22 STAMP=953303610

output file name=/SLCC/u03/SLCC_62_1953220157.arc RECID=0 STAMP=0

channel ORA_DISK_1: archived log copy complete, elapsed time: 00:00:01

Finished backup at 29-AUG-17

cataloged archived log

archived log file name=/SLCC/u03/SLCC_62_1953220157.arc RECID=1 STAMP=953303612

datafile 1 switched to datafile copy

input datafile copy RECID=1 STAMP=953303612 file name=/SLCC/u01/syst_SLCC_01.dbf

datafile 2 switched to datafile copy

input datafile copy RECID=2 STAMP=953303612 file name=/SLCC/u01/syst_SLCC_02.dbf

datafile 3 switched to datafile copy

input datafile copy RECID=3 STAMP=953303612 file name=/SLCC/u01/sysaux_SLCC_01.dbf

datafile 4 switched to datafile copy

input datafile copy RECID=4 STAMP=953303612 file name=/SLCC/u01/sysaux_SLCC_02.dbf

datafile 5 switched to datafile copy

input datafile copy RECID=5 STAMP=953303612 file name=/SLCC/u01/undo_SLCC_01.dbf

datafile 6 switched to datafile copy

input datafile copy RECID=6 STAMP=953303612 file name=/SLCC/u01/undo_SLCC_02.dbf

datafile 7 switched to datafile copy

input datafile copy RECID=7 STAMP=953303612 file name=/SLCC/u01/undo_SLCC_03.dbf

datafile 8 switched to datafile copy

input datafile copy RECID=8 STAMP=953303612 file name=/SLCC/u01/undo_SLCC_04.dbf

datafile 9 switched to datafile copy

input datafile copy RECID=9 STAMP=953303612 file name=/SLCC/u01/undo_SLCC_05.dbf

datafile 10 switched to datafile copy

input datafile copy RECID=10 STAMP=953303612 file name=/SLCC/u01/axiom_SLCC_01.dbf

datafile 11 switched to datafile copy

input datafile copy RECID=11 STAMP=953303612 file name=/SLCC/u01/banaq_SLCC_01.dbf

datafile 12 switched to datafile copy

input datafile copy RECID=12 STAMP=953303612 file name=/SLCC/u01/baniam_SLCC_01.dbf

datafile 13 switched to datafile copy

input datafile copy RECID=13 STAMP=953303612 file name=/SLCC/u01/bankencrypt_SLCC_01.dbf

datafile 14 switched to datafile copy

input datafile copy RECID=14 STAMP=953303612 file name=/SLCC/u01/banlob_SLCC_01.dbf

datafile 15 switched to datafile copy

input datafile copy RECID=15 STAMP=953303612 file name=/SLCC/u01/bepevents_SLCC_01.dbf

datafile 16 switched to datafile copy

input datafile copy RECID=16 STAMP=953303612 file name=/SLCC/u01/bnixmgr_SLCC_01.dbf

datafile 17 switched to datafile copy

input datafile copy RECID=17 STAMP=953303612 file name=/SLCC/u01/brio_SLCC_01.dbf

datafile 18 switched to datafile copy

input datafile copy RECID=18 STAMP=953303612 file name=/SLCC/u01/brio_SLCC_02.dbf

datafile 19 switched to datafile copy

input datafile copy RECID=19 STAMP=953303612 file name=/SLCC/u01/CASHNET_SLCC_01.dbf

datafile 20 switched to datafile copy

input datafile copy RECID=20 STAMP=953303612 file name=/SLCC/u01/cleaf_SLCC_01.dbf

datafile 21 switched to datafile copy

input datafile copy RECID=21 STAMP=953303612 file name=/SLCC/u01/clnd_SLCC_01.dbf

datafile 22 switched to datafile copy

input datafile copy RECID=22 STAMP=953303612 file name=/SLCC/u01/clnx_SLCC_01.dbf

datafile 23 switched to datafile copy

input datafile copy RECID=23 STAMP=953303612 file name=/SLCC/u01/conver_SLCC_01.dbf

datafile 24 switched to datafile copy

input datafile copy RECID=24 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_01.dbf

datafile 25 switched to datafile copy

input datafile copy RECID=25 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_02.dbf

datafile 26 switched to datafile copy

input datafile copy RECID=26 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_03.dbf

datafile 27 switched to datafile copy

input datafile copy RECID=27 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_04.dbf

datafile 28 switched to datafile copy

input datafile copy RECID=28 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_05.dbf

datafile 29 switched to datafile copy

input datafile copy RECID=29 STAMP=953303612 file name=/SLCC/u01/darsdat_SLCC_06.dbf

datafile 30 switched to datafile copy

input datafile copy RECID=30 STAMP=953303612 file name=/SLCC/u01/ETRANS_SLCC_01.dbf

datafile 31 switched to datafile copy

input datafile copy RECID=31 STAMP=953303612 file name=/SLCC/u01/fimdat_SLCC_01.dbf

datafile 32 switched to datafile copy

input datafile copy RECID=32 STAMP=953303612 file name=/SLCC/u01/fimdat_SLCC_02.dbf

datafile 33 switched to datafile copy

input datafile copy RECID=33 STAMP=953303612 file name=/SLCC/u01/fimndx_SLCC_01.dbf

datafile 34 switched to datafile copy

input datafile copy RECID=34 STAMP=953303612 file name=/SLCC/u01/gendat_SLCC_01.dbf

datafile 35 switched to datafile copy

input datafile copy RECID=35 STAMP=953303612 file name=/SLCC/u01/gendat_SLCC_02.dbf

datafile 36 switched to datafile copy

input datafile copy RECID=36 STAMP=953303612 file name=/SLCC/u01/gendat_SLCC_03.dbf

datafile 37 switched to datafile copy

input datafile copy RECID=37 STAMP=953303612 file name=/SLCC/u01/genndx_SLCC_01.dbf

datafile 38 switched to datafile copy

input datafile copy RECID=38 STAMP=953303612 file name=/SLCC/u01/genndx_SLCC_02.dbf

datafile 39 switched to datafile copy

input datafile copy RECID=39 STAMP=953303612 file name=/SLCC/u01/hrsdat_SLCC_01.dbf

datafile 40 switched to datafile copy

input datafile copy RECID=40 STAMP=953303612 file name=/SLCC/u01/hrsdat_SLCC_02.dbf

datafile 41 switched to datafile copy

input datafile copy RECID=41 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_03.dbf

datafile 42 switched to datafile copy

input datafile copy RECID=42 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_04.dbf

datafile 43 switched to datafile copy

input datafile copy RECID=43 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_05.dbf

datafile 44 switched to datafile copy

input datafile copy RECID=44 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_06.dbf

datafile 45 switched to datafile copy

input datafile copy RECID=45 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_07.dbf

datafile 46 switched to datafile copy

input datafile copy RECID=46 STAMP=953303613 file name=/SLCC/u01/hrsdat_SLCC_08.dbf

datafile 47 switched to datafile copy

input datafile copy RECID=47 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_01.dbf

datafile 48 switched to datafile copy

input datafile copy RECID=48 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_02.dbf

datafile 49 switched to datafile copy

input datafile copy RECID=49 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_03.dbf

datafile 50 switched to datafile copy

input datafile copy RECID=50 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_04.dbf

datafile 51 switched to datafile copy

input datafile copy RECID=51 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_05.dbf

datafile 52 switched to datafile copy

input datafile copy RECID=52 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_06.dbf

datafile 53 switched to datafile copy

input datafile copy RECID=53 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_07.dbf

datafile 54 switched to datafile copy

input datafile copy RECID=54 STAMP=953303613 file name=/SLCC/u01/hrsndx_SLCC_08.dbf

datafile 55 switched to datafile copy

input datafile copy RECID=55 STAMP=953303613 file name=/SLCC/u01/identmgr_SLCC_01.dbf

datafile 56 switched to datafile copy

input datafile copy RECID=56 STAMP=953303613 file name=/SLCC/u01/lgsatndx_SLCC_01.dbf

datafile 57 switched to datafile copy

input datafile copy RECID=57 STAMP=953303613 file name=/SLCC/u01/lgsatndx_SLCC_02.dbf

datafile 58 switched to datafile copy

input datafile copy RECID=58 STAMP=953303613 file name=/SLCC/u01/mobile_SLCC_01.dbf

datafile 59 switched to datafile copy

input datafile copy RECID=59 STAMP=953303613 file name=/SLCC/u01/nelnet_SLCC_01.dbf

datafile 60 switched to datafile copy

input datafile copy RECID=60 STAMP=953303613 file name=/SLCC/u01/nelnetndx_SLCC_01.dbf

datafile 61 switched to datafile copy

input datafile copy RECID=61 STAMP=953303613 file name=/SLCC/u01/opm_SLCC_01.dbf

datafile 62 switched to datafile copy

input datafile copy RECID=62 STAMP=953303613 file name=/SLCC/u01/orbld_SLCC_01.dbf

datafile 63 switched to datafile copy

input datafile copy RECID=63 STAMP=953303613 file name=/SLCC/u01/orblx_SLCC_01.dbf

datafile 64 switched to datafile copy

input datafile copy RECID=64 STAMP=953303613 file name=/SLCC/u01/orbtd_SLCC_01.dbf

datafile 65 switched to datafile copy

input datafile copy RECID=65 STAMP=953303613 file name=/SLCC/u01/orbtx_SLCC_01.dbf

datafile 66 switched to datafile copy

input datafile copy RECID=66 STAMP=953303613 file name=/SLCC/u01/PEOPLEADM_SLCC_01.dbf

datafile 67 switched to datafile copy

input datafile copy RECID=67 STAMP=953303613 file name=/SLCC/u01/prod_SLCC_01.dbf

datafile 68 switched to datafile copy

input datafile copy RECID=68 STAMP=953303613 file name=/SLCC/u01/prolob_SLCC_01.dbf

datafile 69 switched to datafile copy

input datafile copy RECID=69 STAMP=953303613 file name=/SLCC/u01/prox_SLCC_01.dbf

datafile 70 switched to datafile copy

input datafile copy RECID=70 STAMP=953303613 file name=/SLCC/u01/resdat_SLCC_01.dbf

datafile 71 switched to datafile copy

input datafile copy RECID=71 STAMP=953303613 file name=/SLCC/u01/resdat_SLCC_02.dbf

datafile 72 switched to datafile copy

input datafile copy RECID=72 STAMP=953303613 file name=/SLCC/u01/resdat_SLCC_03.dbf

datafile 73 switched to datafile copy

input datafile copy RECID=73 STAMP=953303613 file name=/SLCC/u01/resdat_SLCC_04.dbf

datafile 74 switched to datafile copy

input datafile copy RECID=74 STAMP=953303613 file name=/SLCC/u01/resdat_SLCC_05.dbf

datafile 75 switched to datafile copy

input datafile copy RECID=75 STAMP=953303613 file name=/SLCC/u01/resndx_SLCC_01.dbf

datafile 76 switched to datafile copy

input datafile copy RECID=76 STAMP=953303613 file name=/SLCC/u01/resndx_SLCC_02.dbf

datafile 77 switched to datafile copy

input datafile copy RECID=77 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_01.dbf

datafile 78 switched to datafile copy

input datafile copy RECID=78 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_02.dbf

datafile 79 switched to datafile copy

input datafile copy RECID=79 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_03.dbf

datafile 80 switched to datafile copy

input datafile copy RECID=80 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_04.dbf

datafile 81 switched to datafile copy

input datafile copy RECID=81 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_05.dbf

datafile 82 switched to datafile copy

input datafile copy RECID=82 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_06.dbf

datafile 83 switched to datafile copy

input datafile copy RECID=83 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_07.dbf

datafile 84 switched to datafile copy

input datafile copy RECID=84 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_08.dbf

datafile 85 switched to datafile copy

input datafile copy RECID=85 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_09.dbf

datafile 86 switched to datafile copy

input datafile copy RECID=86 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_10.dbf

datafile 87 switched to datafile copy

input datafile copy RECID=87 STAMP=953303613 file name=/SLCC/u01/satdat_SLCC_11.dbf

datafile 88 switched to datafile copy

input datafile copy RECID=88 STAMP=953303613 file name=/SLCC/u01/satndx_SLCC_01.dbf

datafile 89 switched to datafile copy

input datafile copy RECID=89 STAMP=953303613 file name=/SLCC/u01/satndx_SLCC_02.dbf

datafile 90 switched to datafile copy

input datafile copy RECID=90 STAMP=953303613 file name=/SLCC/u01/satndx_SLCC_03.dbf

datafile 91 switched to datafile copy

input datafile copy RECID=91 STAMP=953303614 file name=/SLCC/u01/satndx_SLCC_04.dbf

datafile 92 switched to datafile copy

input datafile copy RECID=92 STAMP=953303614 file name=/SLCC/u01/satndx_SLCC_05.dbf

datafile 93 switched to datafile copy

input datafile copy RECID=93 STAMP=953303614 file name=/SLCC/u01/satndx_SLCC_06.dbf

datafile 94 switched to datafile copy

input datafile copy RECID=94 STAMP=953303614 file name=/SLCC/u01/satndx_SLCC_07.dbf

datafile 95 switched to datafile copy

input datafile copy RECID=95 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_01.dbf

datafile 96 switched to datafile copy

input datafile copy RECID=96 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_02.dbf

datafile 97 switched to datafile copy

input datafile copy RECID=97 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_03.dbf

datafile 98 switched to datafile copy

input datafile copy RECID=98 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_04.dbf

datafile 99 switched to datafile copy

input datafile copy RECID=99 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_05.dbf

datafile 100 switched to datafile copy

input datafile copy RECID=100 STAMP=953303614 file name=/SLCC/u01/smndx_SLCC_06.dbf

datafile 101 switched to datafile copy

input datafile copy RECID=101 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_01.dbf

datafile 102 switched to datafile copy

input datafile copy RECID=102 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_02.dbf

datafile 103 switched to datafile copy

input datafile copy RECID=103 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_03.dbf

datafile 104 switched to datafile copy

input datafile copy RECID=104 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_04.dbf

datafile 105 switched to datafile copy

input datafile copy RECID=105 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_05.dbf

datafile 106 switched to datafile copy

input datafile copy RECID=106 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_06.dbf

datafile 107 switched to datafile copy

input datafile copy RECID=107 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_07.dbf

datafile 108 switched to datafile copy

input datafile copy RECID=108 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_08.dbf

datafile 109 switched to datafile copy

input datafile copy RECID=109 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_09.dbf

datafile 110 switched to datafile copy

input datafile copy RECID=110 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_10.dbf

datafile 111 switched to datafile copy

input datafile copy RECID=111 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_11.dbf

datafile 112 switched to datafile copy

input datafile copy RECID=112 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_12.dbf

datafile 113 switched to datafile copy

input datafile copy RECID=113 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_13.dbf

datafile 114 switched to datafile copy

input datafile copy RECID=114 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_14.dbf

datafile 115 switched to datafile copy

input datafile copy RECID=115 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_15.dbf

datafile 116 switched to datafile copy

input datafile copy RECID=116 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_16.dbf

datafile 117 switched to datafile copy

input datafile copy RECID=117 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_17.dbf

datafile 118 switched to datafile copy

input datafile copy RECID=118 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_18.dbf

datafile 119 switched to datafile copy

input datafile copy RECID=119 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_19.dbf

datafile 120 switched to datafile copy

input datafile copy RECID=120 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_20.dbf

datafile 121 switched to datafile copy

input datafile copy RECID=121 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_21.dbf

datafile 122 switched to datafile copy

input datafile copy RECID=122 STAMP=953303614 file name=/SLCC/u01/smdat_SLCC_22.dbf

datafile 123 switched to datafile copy

input datafile copy RECID=123 STAMP=953303614 file name=/SLCC/u01/spencrypt_SLCC_01.dbf

datafile 124 switched to datafile copy

input datafile copy RECID=124 STAMP=953303614 file name=/SLCC/u01/sphrencrypt_SLCC_01.dbf

datafile 125 switched to datafile copy

input datafile copy RECID=125 STAMP=953303614 file name=/SLCC/u01/ssomgr_SLCC_01.dbf

datafile 126 switched to datafile copy

input datafile copy RECID=126 STAMP=953303614 file name=/SLCC/u01/tasdat_SLCC_01.dbf

datafile 127 switched to datafile copy

input datafile copy RECID=127 STAMP=953303614 file name=/SLCC/u01/tasdat_SLCC_02.dbf

datafile 128 switched to datafile copy

input datafile copy RECID=128 STAMP=953303614 file name=/SLCC/u01/tasdat_SLCC_03.dbf

datafile 129 switched to datafile copy

input datafile copy RECID=129 STAMP=953303614 file name=/SLCC/u01/tasndx_SLCC_01.dbf

datafile 130 switched to datafile copy

input datafile copy RECID=130 STAMP=953303614 file name=/SLCC/u01/tasndx_SLCC_02.dbf

datafile 131 switched to datafile copy

input datafile copy RECID=131 STAMP=953303614 file name=/SLCC/u01/tasndx_SLCC_03.dbf

datafile 132 switched to datafile copy

input datafile copy RECID=132 STAMP=953303614 file name=/SLCC/u01/tool_SLCC_01.dbf

datafile 133 switched to datafile copy

input datafile copy RECID=133 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_01.dbf

datafile 134 switched to datafile copy

input datafile copy RECID=134 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_02.dbf

datafile 135 switched to datafile copy

input datafile copy RECID=135 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_03.dbf

datafile 136 switched to datafile copy

input datafile copy RECID=136 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_04.dbf

datafile 137 switched to datafile copy

input datafile copy RECID=137 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_05.dbf

datafile 138 switched to datafile copy

input datafile copy RECID=138 STAMP=953303614 file name=/SLCC/u01/trndat_SLCC_06.dbf

datafile 139 switched to datafile copy

input datafile copy RECID=139 STAMP=953303614 file name=/SLCC/u01/trnndx_SLCC_01.dbf

datafile 140 switched to datafile copy

input datafile copy RECID=140 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_02.dbf

datafile 141 switched to datafile copy

input datafile copy RECID=141 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_03.dbf

datafile 142 switched to datafile copy

input datafile copy RECID=142 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_04.dbf

datafile 143 switched to datafile copy

input datafile copy RECID=143 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_05.dbf

datafile 144 switched to datafile copy

input datafile copy RECID=144 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_06.dbf

datafile 145 switched to datafile copy

input datafile copy RECID=145 STAMP=953303615 file name=/SLCC/u01/trnndx_SLCC_07.dbf

datafile 146 switched to datafile copy

input datafile copy RECID=146 STAMP=953303615 file name=/SLCC/u01/user_SLCC_01.dbf

datafile 147 switched to datafile copy

input datafile copy RECID=147 STAMP=953303615 file name=/SLCC/u01/user_SLCC_02.dbf

datafile 148 switched to datafile copy

input datafile copy RECID=148 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_01.dbf

datafile 149 switched to datafile copy

input datafile copy RECID=149 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_02.dbf

datafile 150 switched to datafile copy

input datafile copy RECID=150 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_03.dbf

datafile 151 switched to datafile copy

input datafile copy RECID=151 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_04.dbf

datafile 152 switched to datafile copy

input datafile copy RECID=152 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_05.dbf

datafile 153 switched to datafile copy

input datafile copy RECID=153 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_06.dbf

datafile 154 switched to datafile copy

input datafile copy RECID=154 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_07.dbf

datafile 155 switched to datafile copy

input datafile copy RECID=155 STAMP=953303615 file name=/SLCC/u01/workflow_SLCC_08.dbf

contents of Memory Script:

{

set until scn 743030;

recover

standby

clone database

delete archivelog

;

}

executing Memory Script

executing command: SET until clause

Starting recover at 29-AUG-17

using channel ORA_AUX_DISK_1

starting media recovery

archived log for thread 1 with sequence 62 is already on disk as file /SLCC/u03/SLCC_62_1953220157.arc

archived log file name=/SLCC/u03/SLCC_62_1953220157.arc thread=1 sequence=62

media recovery complete, elapsed time: 00:00:02

Finished recover at 29-AUG-17

Finished Duplicate Db at 29-AUG-17

RMAN> **end-of-file**

RMAN>