• 11g adg 环境搭建实施手册-0908


    11g adg 环境搭建实施手册-0908

    2017年8月30日

    9:16

    11g adg 环境搭建实施手册-0824

    2017年8月24日

    10:18

    ################################################################

    简介

    从11g 开始oracle提供了一个新功能Active Database Duplication for A standby database来创建配置物理standby 数据库。

    Active Database Duplication for A standby database这个功能主要从一个正在运行的数据库复制数据文件,控制文件等到一个物理备库(physical standby database)。

    这个功能简化了创建standby database过程中在主库备份和备库恢复的环节,实现了自动拷贝主库的{控制文件、数据文件、日志文件}等到备库,对比基于备份集的创建standby database

    过程中需要手动在主库备份,然后将备份集拷贝到备库再手动恢复来说,减少了dba的大量工作。

    创建物理standby database过程中的其他环节,如打开主库的force logging,主库init参数的修改等,以及备库开始应用redo log这些环节还需手动来完成的,与以往的创建配置物理standby database 是相同的。

    备库的init参数需要在duplicate命令中指定,没有特殊指定的,就会默认使用主库的init参数值。

    测试环境

    -----------------------------------

    主库:11.2.0.4 单机数据库,db_unique_name=owner,数据文件存放在文件系统

    备库:11.2.0.4 单机数据库,db_unique_name=ownerbak,数据文件存放在文件系统

    Data Guard保护模式(Protection mode)采用最大性能模式(MAXIMIZE PERFORMANCE)redo log传输采用LGWR进程的异步传输方式

    ##########################################################################

    安装前环境检查

       【要求】

    1. 主库和备库必须是相同版本及位数并且为企业版(Enterprise Edition Release)

    2. 主库和备库所在的操作系统最好是相同平台,相同操作系统版本,必须是相同 ENDIAN_FORMAT 的平台

    3. 主库、备库必须开启归档模式

    4.主库、备库 必须启用force logging功能

    1. 检查主库和备库数据库软件版本

    SYS(125_9)@owner> select * from v$version;

    BANNER

    --------------------------------------------------------------------------------

    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    CORE    11.2.0.4.0      Production

    TNS for Linux: Version 11.2.0.4.0 - Production

    NLSRTL Version 11.2.0.4.0 - Production

    1. 检查操作系统平台是否兼容

    SYS(125_9)@owner> select * from v$transportable_platform order by endian_format,platform_name;

    PLATFORM_ID PLATFORM_NAME                            ENDIAN_FORMAT

    ----------- ---------------------------------------- --------------

              6 AIX-Based Systems (64-bit)               Big

             16 Apple Mac OS                             Big

              3 HP-UX (64-bit)                           Big

              4 HP-UX IA (64-bit)                        Big

             18 IBM Power Based Linux                    Big

              9 IBM zSeries Based Linux                  Big

              1 Solaris[tm] OE (32-bit)                  Big

              2 Solaris[tm] OE (64-bit)                  Big

             21 Apple Mac OS (x86-64)                    Little

             19 HP IA Open VMS                           Little

             15 HP Open VMS                              Little

              5 HP Tru64 UNIX                            Little

             10 Linux IA (32-bit)                        Little

             11 Linux IA (64-bit)                        Little

             13 Linux x86 64-bit                         Little

              7 Microsoft Windows IA (32-bit)            Little

              8 Microsoft Windows IA (64-bit)            Little

             12 Microsoft Windows x86 64-bit             Little

             17 Solaris Operating System (x86)           Little

             20 Solaris Operating System (x86-64)        Little

              

    1. 检查主库是否开启归档

    SYS(125_9)@owner> select name,log_mode,force_logging from v$database;

    NAME      LOG_MODE     FOR

    --------- ------------ ---

    OWNER      ARCHIVELOG   NO

    ##########################################################################

    安装前环境准备

    ##########################################################################

    1. 启用主库 的  force logging模式:

    SYS(125_9)@owner>  ALTER DATABASE FORCE LOGGING;

    查看主库当前是否为force logging:

    SYS(125_9)@owner> select force_logging from v$database;

    FOR

    ---

    YES

    2. 修改主库的初始化参数如下:

    LOG_ARCHIVE_CONFIG='DG_CONFIG=(owner,ownerbak)' 

    --这是本地的归档目录

    LOG_ARCHIVE_DEST_1='LOCATION=/u01/app/oracle/oradata/arch_dir/owner  VALID_FOR=(all_logfiles,all_roles) db_unique_name=owner'

    --这是接收远程的归档目录   注意 service、db_unique_name

    LOG_ARCHIVE_DEST_2='SERVICE=ownerbak LGWR SYNC VALID_FOR=(all_logfiles,all_roles) DB_UNIQUE_NAME=ownerbak'

    LOG_ARCHIVE_DEST_STATE_1=ENABLE

    LOG_ARCHIVE_DEST_STATE_2=ENABLE

    REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE

    LOG_ARCHIVE_MAX_PROCESSES=10

    3.       为简化 rman窗口中的输入,因此把相应的操作放入 duplicate.sql文件中。然后执行该文件。

    duplicate target database  for standby nofilenamecheck

    from active database

    dorecover                                                                  

    spfile

    set db_unique_name='ownerbak'

    set log_archive_dest_1='location=/home/oracle/arch_dir/ownerbak/ valid_for=(all_logfiles,all_roles) db_unique_name=ownerbak'

    set log_archive_dest_2='service=owner sync lgwr valid_for=(online_logfiles,primary_role) db_unique_name=owner'

    set standby_file_management='auto'

    set fal_server='owner'

    set fal_client='ownerbak'

    set control_files='/u01/app/oracle/oradata/ownerbak/control01.ctl'

    #set memory_target='500m'

    set sga_max_size='4400m'

    set diagnostic_dest='/u01/app/oracle'

    set audit_file_dest='/u01/app/oracle/admin/ownerbak/adump'

    set DB_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak'

    set LOG_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak';

      

    4. 在备库创建 adump 路径,与参数audit_file_dest的路径一致

    $ mkdir -p  /u01/app/oracle/admin/ownerbak/adump

    5. 在备库创建init参数文件$ORACLE_HOME/dbs/initownerbak.ora',

    有了这个临时的init参数文件,我们就可以在duplicate命令运行前将备库的AUXILIARY实例启动到nomount状态,这也是运行duplicate命令的一个必要条件。

    initowner.ora文件只有一行信息:

    DB_NAME=owner

    6. 将密码文件从主库服务器拷贝到备库服务器,并且重命名:

    [oracle@ora11204 scripts]$  cp orapwowner orapwownerbak

    7. 在主库服务器和备库服务器, 编辑添加下面信息到$ORACLE_HOME/network/tnsnames.ora

    owner =

      (DESCRIPTION =

        (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))

        (CONNECT_DATA =

          (SERVER = DEDICATED)

          (SERVICE_NAME = owner)

        )

      )

    ownerbak =

      (DESCRIPTION =

        (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))

        (CONNECT_DATA =

          (SERVER = DEDICATED)

          (SERVICE_NAME = ownerbak)

        )

      )

    8. 在备库服务器, 添加静态注册信息到 $ORACLE_HOME/network/admin/listener.ora文件,

    这主要是由于AUXILIARY实例启动到nomount状态时,listener无法注册AUXILIARY实例,listener会标志Auxiliary实例为'blocked'状态,因此duplicate命令就无法通过TNS的方式连接到Auxiliary实例,为了解决这个问题,需要先手动静态注册数据库实例到listener上。

    当Data Guard配置完成后,就可以删除静态注册的配置信息。

    本测试使用ASM,因此需要安装GRID,有效的listener.ora文件是在GRID_HOME下面

    SID_LIST_LISTENER = 

      (SID_LIST = 

        (SID_DESC = 

          (SID_NAME = owner) 

          (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)       

        ) 

        (SID_DESC = 

          (SID_NAME =ownerbak) 

          (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1) 

          (GLOBAL_DBNAME=ownerbak) 

        ) 

      ) 

    LISTENER = 

      (DESCRIPTION_LIST = 

        (DESCRIPTION = 

          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1)) 

          (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) 

        ) 

      )

    9. 在备库服务器,启动AUXILIARY实例到 nomount 状态:

    [oracle@ora11204 scripts]$  export ORACLE_SID=ownerbak

    [oracle@ora11204 scripts]$ sqlplus / as sysdba

    SYS(125_9)@owner> startup nomount;

    10. 在备库测试与AUXILIARY实例的连接和与主库的连接,如果连接成功,继续执行下面的步骤,

    很多时候duplicate命令失败都是由于连接失败导致的。

    [oracle@ora11204 scripts]$ sqlplus sys/oracle@owner as sysdba

    [oracle@ora11204 scripts]$ sqlplus sys/oracle@ownerbak as sysdba

    Duplicate.sql 如下:

    duplicate target database  for standby nofilenamecheck

    from active database

    dorecover                                                                  

    spfile

    set db_unique_name='ownerbak'

    set log_archive_dest_1='location=/u01/app/oracle/oradata/arch_dir/ownerbak valid_for=(all_logfiles,all_roles) db_unique_name=ownerbak'

    set log_archive_dest_2='service=owner sync lgwr valid_for=(online_logfiles,primary_role) db_unique_name=owner'

    set standby_file_management='auto'

    set fal_server='owner'

    set fal_client='ownerbak'

    set control_files='/u01/app/oracle/oradata/ownerbak/control01.ctl'

    #set memory_target='4400m'

    set sga_max_size='4400m'

    set diagnostic_dest='/u01/app/oracle'

    set audit_file_dest='/u01/app/oracle/admin/ownerbak/adump'

    set DB_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak'

    set LOG_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak';

    11. 创建备库

    在duplicate命令中指定关键字'FOR STANDBY'和'FROM ACTIVE DATABASE'表示从一个active的数据库来复制创建物理备库

    参数'DORECOVER'表示duplicate命令会执行recover动作,否则duplicate命令只执行restore,

    备库与主库不同的初始化参数,需要在duplicate命令中特殊指定,这样创建备库的spfile时就会用指定的值替换主库的参数值,

    主库与备库的数据文件的路径不同,因此设置参数'DB_FILE_NAME_CONVERT'

    % rman target sys/oracle@owner    auxiliary  SYS/oracle@ownerbak  cmdfile=/home/oracle/scripts/duplicate.sql  log=/home/oracle/scripts/duplicate.log

    以下是duplicate standby database过程中的log信息

    Recovery Manager: Release 11.2.0.4.0 - Production on Tue Aug 29 17:36:43 2017

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

    connected to target database: OWNER (DBID=4013763178)

    connected to auxiliary database: OWNERBAK (not mounted)

    RMAN>

    RMAN> duplicate target database  for standby nofilenamecheck

    2> from active database

    3> dorecover                                                                  

    4> spfile

    5> set db_unique_name='ownerbak'

    6> set log_archive_dest_1='location=/home/oracle/arch_dir/ownerbak valid_for=(all_logfiles,all_roles) db_unique_name=ownerbak'

    7> set log_archive_dest_2='service=owner sync lgwr valid_for=(online_logfiles,primary_role) db_unique_name=owner'

    8> set standby_file_management='auto'

    9> set fal_server='owner'

    10> set fal_client='ownerbak'

    11> set control_files='/u01/app/oracle/oradata/ownerbak/control01.ctl'

    12> #set memory_target='4400m'

    13> set sga_max_size='4400m'

    14> set diagnostic_dest='/u01/app/oracle'

    15> set audit_file_dest='/u01/app/oracle/admin/ownerbak/adump'

    16> set DB_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak'

    17> set LOG_FILE_NAME_CONVERT='/u01/app/oracle/oradata/owner','/u01/app/oracle/oradata/ownerbak';

    18>

    19>

    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=632 device type=DISK

    contents of Memory Script:

    {

       backup as copy reuse

       targetfile  '/u01/app/oracle/product/11.2.0/db_1/dbs/orapwowner' auxiliary format

     '/u01/app/oracle/product/11.2.0/db_1/dbs/orapwownerbak'   targetfile

     '/u01/app/oracle/product/11.2.0/db_1/dbs/spfileowner.ora' auxiliary format

     '/u01/app/oracle/product/11.2.0/db_1/dbs/spfileownerbak.ora'   ;

       sql clone "alter system set spfile= ''/u01/app/oracle/product/11.2.0/db_1/dbs/spfileownerbak.ora''";

    }

    executing Memory Script

    Starting backup at 29-AUG-17

    allocated channel: ORA_DISK_1

    channel ORA_DISK_1: SID=132 device type=DISK

    Finished backup at 29-AUG-17

    sql statement: alter system set spfile= ''/u01/app/oracle/product/11.2.0/db_1/dbs/spfileownerbak.ora''

    contents of Memory Script:

    {

       sql clone "alter system set  db_unique_name =

     ''ownerbak'' comment=

     '''' scope=spfile";

       sql clone "alter system set  log_archive_dest_1 =

     ''location=/home/oracle/arch_dir/ownerbak valid_for=(all_logfiles,all_roles) db_unique_name=ownerbak'' comment=

     '''' scope=spfile";

       sql clone "alter system set  log_archive_dest_2 =

     ''service=owner sync lgwr valid_for=(online_logfiles,primary_role) db_unique_name=owner'' comment=

     '''' scope=spfile";

       sql clone "alter system set  standby_file_management =

     ''auto'' comment=

     '''' scope=spfile";

       sql clone "alter system set  fal_server =

     ''owner'' comment=

     '''' scope=spfile";

       sql clone "alter system set  fal_client =

     ''ownerbak'' comment=

     '''' scope=spfile";

       sql clone "alter system set  control_files =

     ''/u01/app/oracle/oradata/ownerbak/control01.ctl'' comment=

     '''' scope=spfile";

       sql clone "alter system set  sga_max_size =

     4400m comment=

     '''' scope=spfile";

       sql clone "alter system set  diagnostic_dest =

     ''/u01/app/oracle'' comment=

     '''' scope=spfile";

       sql clone "alter system set  audit_file_dest =

     ''/u01/app/oracle/admin/ownerbak/adump'' comment=

     '''' scope=spfile";

       sql clone "alter system set  db_file_name_convert =

     ''/u01/app/oracle/oradata/owner'', ''/u01/app/oracle/oradata/ownerbak'' comment=

     '''' scope=spfile";

       sql clone "alter system set  LOG_FILE_NAME_CONVERT =

     ''/u01/app/oracle/oradata/owner'', ''/u01/app/oracle/oradata/ownerbak'' comment=

     '''' scope=spfile";

       shutdown clone immediate;

       startup clone nomount;

    }

    executing Memory Script

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

    sql statement: alter system set  log_archive_dest_1 =  ''location=/home/oracle/arch_dir/ownerbak valid_for=(all_logfiles,all_roles) db_unique_name=ownerbak'' comment= '''' scope=spfile

    sql statement: alter system set  log_archive_dest_2 =  ''service=owner sync lgwr valid_for=(online_logfiles,primary_role) db_unique_name=owner'' comment= '''' scope=spfile

    sql statement: alter system set  standby_file_management =  ''auto'' comment= '''' scope=spfile

    sql statement: alter system set  fal_server =  ''owner'' comment= '''' scope=spfile

    sql statement: alter system set  fal_client =  ''ownerbak'' comment= '''' scope=spfile

    sql statement: alter system set  control_files =  ''/u01/app/oracle/oradata/ownerbak/control01.ctl'' comment= '''' scope=spfile

    sql statement: alter system set  sga_max_size =  4400m comment= '''' scope=spfile

    sql statement: alter system set  diagnostic_dest =  ''/u01/app/oracle'' comment= '''' scope=spfile

    sql statement: alter system set  audit_file_dest =  ''/u01/app/oracle/admin/ownerbak/adump'' comment= '''' scope=spfile

    sql statement: alter system set  db_file_name_convert =  ''/u01/app/oracle/oradata/owner'', ''/u01/app/oracle/oradata/ownerbak'' comment= '''' scope=spfile

    sql statement: alter system set  LOG_FILE_NAME_CONVERT =  ''/u01/app/oracle/oradata/owner'', ''/u01/app/oracle/oradata/ownerbak'' comment= '''' scope=spfile

    Oracle instance shut down

    connected to auxiliary database (not started)

    Oracle instance started

    Total System Global Area    4593127424 bytes

    Fixed Size                     2260848 bytes

    Variable Size               2768240784 bytes

    Database Buffers            1811939328 bytes

    Redo Buffers                  10686464 bytes

    contents of Memory Script:

    {

       backup as copy current controlfile for standby auxiliary format  '/u01/app/oracle/oradata/ownerbak/control01.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=/u01/app/oracle/product/11.2.0/db_1/dbs/snapcf_owner.f tag=TAG20170829T173656 RECID=5 STAMP=953314616

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

    Finished backup 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

    contents of Memory Script:

    {

       set newname for tempfile  1 to

     "/u01/app/oracle/oradata/ownerbak/temp01.dbf";

       switch clone tempfile all;

       set newname for datafile  1 to

     "/u01/app/oracle/oradata/ownerbak/system01.dbf";

       set newname for datafile  2 to

     "/u01/app/oracle/oradata/ownerbak/sysaux01.dbf";

       set newname for datafile  3 to

     "/u01/app/oracle/oradata/ownerbak/undotbs01.dbf";

       set newname for datafile  4 to

     "/u01/app/oracle/oradata/ownerbak/users01.dbf";

       set newname for datafile  5 to

     "/u01/app/oracle/oradata/ownerbak/example01.dbf";

       set newname for datafile  6 to

     "/u01/app/oracle/oradata/ownerbak/owner.dbf";

       set newname for datafile  7 to

     "/u01/app/oracle/oradata/ownerbak/lvsksk_i_gy.dbf";

       set newname for datafile  8 to

     "/u01/app/oracle/oradata/ownerbak/lvsksk_t_gy.dbf";

       set newname for datafile  9 to

     "/u01/app/oracle/oradata/ownerbak/LVSKSK_T_GY_JSP.dbf";

       set newname for datafile  10 to

     "/u01/app/oracle/oradata/ownerbak/LVSKSK_I_JS_P_JSP.dbf";

       set newname for datafile  11 to

     "/u01/app/oracle/oradata/ownerbak/data_1601";

       set newname for datafile  12 to

     "/u01/app/oracle/oradata/ownerbak/ind_1601";

       set newname for datafile  13 to

     "/u01/app/oracle/oradata/ownerbak/data_1602";

       set newname for datafile  14 to

     "/u01/app/oracle/oradata/ownerbak/ind_1602";

       set newname for datafile  15 to

     "/u01/app/oracle/oradata/ownerbak/data_1603";

       set newname for datafile  16 to

     "/u01/app/oracle/oradata/ownerbak/ind_1603";

       set newname for datafile  17 to

     "/u01/app/oracle/oradata/ownerbak/data_1604";

       set newname for datafile  18 to

     "/u01/app/oracle/oradata/ownerbak/ind_1604";

       set newname for datafile  19 to

     "/u01/app/oracle/oradata/ownerbak/data_1605";

       set newname for datafile  20 to

     "/u01/app/oracle/oradata/ownerbak/ind_1605";

       set newname for datafile  21 to

     "/u01/app/oracle/oradata/ownerbak/data_1606";

       set newname for datafile  22 to

     "/u01/app/oracle/oradata/ownerbak/ind_1606";

       set newname for datafile  23 to

     "/u01/app/oracle/oradata/ownerbak/data_1607";

       set newname for datafile  24 to

     "/u01/app/oracle/oradata/ownerbak/ind_1607";

       set newname for datafile  25 to

     "/u01/app/oracle/oradata/ownerbak/data_1608";

       set newname for datafile  26 to

     "/u01/app/oracle/oradata/ownerbak/ind_1608";

       set newname for datafile  27 to

     "/u01/app/oracle/oradata/ownerbak/data_1609";

       set newname for datafile  28 to

     "/u01/app/oracle/oradata/ownerbak/ind_1609";

       set newname for datafile  29 to

     "/u01/app/oracle/oradata/ownerbak/data_1610";

       set newname for datafile  30 to

     "/u01/app/oracle/oradata/ownerbak/ind_1610";

       set newname for datafile  31 to

     "/u01/app/oracle/oradata/ownerbak/data_1611";

       set newname for datafile  32 to

     "/u01/app/oracle/oradata/ownerbak/ind_1611";

       set newname for datafile  33 to

     "/u01/app/oracle/oradata/ownerbak/data_1612";

       set newname for datafile  34 to

     "/u01/app/oracle/oradata/ownerbak/ind_1612";

       set newname for datafile  35 to

     "/u01/app/oracle/oradata/ownerbak/data_1701";

       set newname for datafile  36 to

     "/u01/app/oracle/oradata/ownerbak/ind_1701";

       set newname for datafile  37 to

     "/u01/app/oracle/oradata/ownerbak/data_1702";

       set newname for datafile  38 to

     "/u01/app/oracle/oradata/ownerbak/ind_1702";

       set newname for datafile  39 to

     "/u01/app/oracle/oradata/ownerbak/data_1703";

       set newname for datafile  40 to

     "/u01/app/oracle/oradata/ownerbak/ind_1703";

       set newname for datafile  41 to

     "/u01/app/oracle/oradata/ownerbak/data_1704";

       set newname for datafile  42 to

     "/u01/app/oracle/oradata/ownerbak/ind_1704";

       set newname for datafile  43 to

     "/u01/app/oracle/oradata/ownerbak/data_1705";

       set newname for datafile  44 to

     "/u01/app/oracle/oradata/ownerbak/ind_1705";

       set newname for datafile  45 to

     "/u01/app/oracle/oradata/ownerbak/data_1706";

       set newname for datafile  46 to

     "/u01/app/oracle/oradata/ownerbak/ind_1706";

       set newname for datafile  47 to

     "/u01/app/oracle/oradata/ownerbak/data_1707";

       set newname for datafile  48 to

     "/u01/app/oracle/oradata/ownerbak/ind_1707";

       set newname for datafile  49 to

     "/u01/app/oracle/oradata/ownerbak/data_1708";

       set newname for datafile  50 to

     "/u01/app/oracle/oradata/ownerbak/ind_1708";

       set newname for datafile  51 to

     "/u01/app/oracle/oradata/ownerbak/data_1709";

       set newname for datafile  52 to

     "/u01/app/oracle/oradata/ownerbak/ind_1709";

       set newname for datafile  53 to

     "/u01/app/oracle/oradata/ownerbak/data_1710";

       set newname for datafile  54 to

     "/u01/app/oracle/oradata/ownerbak/ind_1710";

       set newname for datafile  55 to

     "/u01/app/oracle/oradata/ownerbak/data_1711";

       set newname for datafile  56 to

     "/u01/app/oracle/oradata/ownerbak/ind_1711";

       set newname for datafile  57 to

     "/u01/app/oracle/oradata/ownerbak/data_1712";

       set newname for datafile  58 to

     "/u01/app/oracle/oradata/ownerbak/ind_1712";

       set newname for datafile  59 to

     "/u01/app/oracle/oradata/ownerbak/data_1801";

       set newname for datafile  60 to

     "/u01/app/oracle/oradata/ownerbak/ind_1801";

       set newname for datafile  61 to

     "/u01/app/oracle/oradata/ownerbak/data_1802";

       set newname for datafile  62 to

     "/u01/app/oracle/oradata/ownerbak/ind_1802";

       set newname for datafile  63 to

     "/u01/app/oracle/oradata/ownerbak/data_1803";

       set newname for datafile  64 to

     "/u01/app/oracle/oradata/ownerbak/ind_1803";

       set newname for datafile  65 to

     "/u01/app/oracle/oradata/ownerbak/data_1804";

       set newname for datafile  66 to

     "/u01/app/oracle/oradata/ownerbak/ind_1804";

       set newname for datafile  67 to

     "/u01/app/oracle/oradata/ownerbak/data_1805";

       set newname for datafile  68 to

     "/u01/app/oracle/oradata/ownerbak/ind_1805";

       set newname for datafile  69 to

     "/u01/app/oracle/oradata/ownerbak/data_1806";

       set newname for datafile  70 to

     "/u01/app/oracle/oradata/ownerbak/ind_1806";

       set newname for datafile  71 to

     "/u01/app/oracle/oradata/ownerbak/data_1807";

       set newname for datafile  72 to

     "/u01/app/oracle/oradata/ownerbak/ind_1807";

       set newname for datafile  73 to

     "/u01/app/oracle/oradata/ownerbak/data_1808";

       set newname for datafile  74 to

     "/u01/app/oracle/oradata/ownerbak/ind_1808";

       set newname for datafile  75 to

     "/u01/app/oracle/oradata/ownerbak/data_1809";

       set newname for datafile  76 to

     "/u01/app/oracle/oradata/ownerbak/ind_1809";

       set newname for datafile  77 to

     "/u01/app/oracle/oradata/ownerbak/data_1810";

       set newname for datafile  78 to

     "/u01/app/oracle/oradata/ownerbak/ind_1810";

       set newname for datafile  79 to

     "/u01/app/oracle/oradata/ownerbak/data_1811";

       set newname for datafile  80 to

     "/u01/app/oracle/oradata/ownerbak/ind_1811";

       set newname for datafile  81 to

     "/u01/app/oracle/oradata/ownerbak/data_1812";

       set newname for datafile  82 to

     "/u01/app/oracle/oradata/ownerbak/ind_1812";

       set newname for datafile  83 to

     "/u01/app/oracle/oradata/ownerbak/data_2001";

       set newname for datafile  84 to

     "/u01/app/oracle/oradata/ownerbak/ind_2001";

       set newname for datafile  85 to

     "/u01/app/oracle/oradata/ownerbak/data_2002";

       set newname for datafile  86 to

     "/u01/app/oracle/oradata/ownerbak/ind_2002";

       set newname for datafile  87 to

     "/u01/app/oracle/oradata/ownerbak/data_2003";

       set newname for datafile  88 to

     "/u01/app/oracle/oradata/ownerbak/ind_2003";

       set newname for datafile  89 to

     "/u01/app/oracle/oradata/ownerbak/data_2004";

       set newname for datafile  90 to

     "/u01/app/oracle/oradata/ownerbak/ind_2004";

       set newname for datafile  91 to

     "/u01/app/oracle/oradata/ownerbak/data_2005";

       set newname for datafile  92 to

     "/u01/app/oracle/oradata/ownerbak/ind_2005";

       set newname for datafile  93 to

     "/u01/app/oracle/oradata/ownerbak/data_2006";

       set newname for datafile  94 to

     "/u01/app/oracle/oradata/ownerbak/ind_2006";

       set newname for datafile  95 to

     "/u01/app/oracle/oradata/ownerbak/data_2007";

       set newname for datafile  96 to

     "/u01/app/oracle/oradata/ownerbak/ind_2007";

       set newname for datafile  97 to

     "/u01/app/oracle/oradata/ownerbak/data_2008";

       set newname for datafile  98 to

     "/u01/app/oracle/oradata/ownerbak/ind_2008";

       set newname for datafile  99 to

     "/u01/app/oracle/oradata/ownerbak/data_2009";

       set newname for datafile  100 to

     "/u01/app/oracle/oradata/ownerbak/ind_2009";

       set newname for datafile  101 to

     "/u01/app/oracle/oradata/ownerbak/data_2010";

       set newname for datafile  102 to

     "/u01/app/oracle/oradata/ownerbak/ind_2010";

       set newname for datafile  103 to

     "/u01/app/oracle/oradata/ownerbak/data_2011";

       set newname for datafile  104 to

     "/u01/app/oracle/oradata/ownerbak/ind_2011";

       set newname for datafile  105 to

     "/u01/app/oracle/oradata/ownerbak/data_2012";

       set newname for datafile  106 to

     "/u01/app/oracle/oradata/ownerbak/ind_2012";

       set newname for datafile  107 to

     "/u01/app/oracle/oradata/ownerbak/data_2101";

       set newname for datafile  108 to

     "/u01/app/oracle/oradata/ownerbak/ind_2101";

       set newname for datafile  109 to

     "/u01/app/oracle/oradata/ownerbak/data_2102";

       set newname for datafile  110 to

     "/u01/app/oracle/oradata/ownerbak/ind_2102";

       set newname for datafile  111 to

     "/u01/app/oracle/oradata/ownerbak/data_2103";

       set newname for datafile  112 to

     "/u01/app/oracle/oradata/ownerbak/ind_2103";

       set newname for datafile  113 to

     "/u01/app/oracle/oradata/ownerbak/data_2104";

       set newname for datafile  114 to

     "/u01/app/oracle/oradata/ownerbak/ind_2104";

       set newname for datafile  115 to

     "/u01/app/oracle/oradata/ownerbak/data_2105";

       set newname for datafile  116 to

     "/u01/app/oracle/oradata/ownerbak/ind_2105";

       set newname for datafile  117 to

     "/u01/app/oracle/oradata/ownerbak/data_2106";

       set newname for datafile  118 to

     "/u01/app/oracle/oradata/ownerbak/ind_2106";

       set newname for datafile  119 to

     "/u01/app/oracle/oradata/ownerbak/data_2107";

       set newname for datafile  120 to

     "/u01/app/oracle/oradata/ownerbak/ind_2107";

       set newname for datafile  121 to

     "/u01/app/oracle/oradata/ownerbak/data_2108";

       set newname for datafile  122 to

     "/u01/app/oracle/oradata/ownerbak/ind_2108";

       set newname for datafile  123 to

     "/u01/app/oracle/oradata/ownerbak/data_2109";

       set newname for datafile  124 to

     "/u01/app/oracle/oradata/ownerbak/ind_2109";

       set newname for datafile  125 to

     "/u01/app/oracle/oradata/ownerbak/data_2110";

       set newname for datafile  126 to

     "/u01/app/oracle/oradata/ownerbak/ind_2110";

       set newname for datafile  127 to

     "/u01/app/oracle/oradata/ownerbak/data_2111";

       set newname for datafile  128 to

     "/u01/app/oracle/oradata/ownerbak/ind_2111";

       set newname for datafile  129 to

     "/u01/app/oracle/oradata/ownerbak/data_2112";

       set newname for datafile  130 to

     "/u01/app/oracle/oradata/ownerbak/ind_2112";

       set newname for datafile  131 to

     "/u01/app/oracle/oradata/ownerbak/data_2201";

       set newname for datafile  132 to

     "/u01/app/oracle/oradata/ownerbak/ind_2201";

       set newname for datafile  133 to

     "/u01/app/oracle/oradata/ownerbak/data_2202";

       set newname for datafile  134 to

     "/u01/app/oracle/oradata/ownerbak/ind_2202";

       set newname for datafile  135 to

     "/u01/app/oracle/oradata/ownerbak/data_2203";

       set newname for datafile  136 to

     "/u01/app/oracle/oradata/ownerbak/ind_2203";

       set newname for datafile  137 to

     "/u01/app/oracle/oradata/ownerbak/data_2204";

       set newname for datafile  138 to

     "/u01/app/oracle/oradata/ownerbak/ind_2204";

       set newname for datafile  139 to

     "/u01/app/oracle/oradata/ownerbak/data_2205";

       set newname for datafile  140 to

     "/u01/app/oracle/oradata/ownerbak/ind_2205";

       set newname for datafile  141 to

     "/u01/app/oracle/oradata/ownerbak/data_2206";

       set newname for datafile  142 to

     "/u01/app/oracle/oradata/ownerbak/ind_2206";

       set newname for datafile  143 to

     "/u01/app/oracle/oradata/ownerbak/data_2207";

       set newname for datafile  144 to

     "/u01/app/oracle/oradata/ownerbak/ind_2207";

       set newname for datafile  145 to

     "/u01/app/oracle/oradata/ownerbak/data_2208";

       set newname for datafile  146 to

     "/u01/app/oracle/oradata/ownerbak/ind_2208";

       set newname for datafile  147 to

     "/u01/app/oracle/oradata/ownerbak/data_2209";

       set newname for datafile  148 to

     "/u01/app/oracle/oradata/ownerbak/ind_2209";

       set newname for datafile  149 to

     "/u01/app/oracle/oradata/ownerbak/data_2210";

       set newname for datafile  150 to

     "/u01/app/oracle/oradata/ownerbak/ind_2210";

       set newname for datafile  151 to

     "/u01/app/oracle/oradata/ownerbak/data_2211";

       set newname for datafile  152 to

     "/u01/app/oracle/oradata/ownerbak/ind_2211";

       set newname for datafile  153 to

     "/u01/app/oracle/oradata/ownerbak/data_2212";

       set newname for datafile  154 to

     "/u01/app/oracle/oradata/ownerbak/ind_2212";

       set newname for datafile  155 to

     "/u01/app/oracle/oradata/ownerbak/data_2301";

       set newname for datafile  156 to

     "/u01/app/oracle/oradata/ownerbak/ind_2301";

       set newname for datafile  157 to

     "/u01/app/oracle/oradata/ownerbak/data_2302";

       set newname for datafile  158 to

     "/u01/app/oracle/oradata/ownerbak/ind_2302";

       set newname for datafile  159 to

     "/u01/app/oracle/oradata/ownerbak/data_2303";

       set newname for datafile  160 to

     "/u01/app/oracle/oradata/ownerbak/ind_2303";

       set newname for datafile  161 to

     "/u01/app/oracle/oradata/ownerbak/data_2304";

       set newname for datafile  162 to

     "/u01/app/oracle/oradata/ownerbak/ind_2304";

       set newname for datafile  163 to

     "/u01/app/oracle/oradata/ownerbak/data_2305";

       set newname for datafile  164 to

     "/u01/app/oracle/oradata/ownerbak/ind_2305";

       set newname for datafile  165 to

     "/u01/app/oracle/oradata/ownerbak/data_2306";

       set newname for datafile  166 to

     "/u01/app/oracle/oradata/ownerbak/ind_2306";

       set newname for datafile  167 to

     "/u01/app/oracle/oradata/ownerbak/data_2307";

       set newname for datafile  168 to

     "/u01/app/oracle/oradata/ownerbak/ind_2307";

       set newname for datafile  169 to

     "/u01/app/oracle/oradata/ownerbak/data_2308";

       set newname for datafile  170 to

     "/u01/app/oracle/oradata/ownerbak/ind_2308";

       set newname for datafile  171 to

     "/u01/app/oracle/oradata/ownerbak/data_2309";

       set newname for datafile  172 to

     "/u01/app/oracle/oradata/ownerbak/ind_2309";

       set newname for datafile  173 to

     "/u01/app/oracle/oradata/ownerbak/data_2310";

       set newname for datafile  174 to

     "/u01/app/oracle/oradata/ownerbak/ind_2310";

       set newname for datafile  175 to

     "/u01/app/oracle/oradata/ownerbak/data_2311";

       set newname for datafile  176 to

     "/u01/app/oracle/oradata/ownerbak/ind_2311";

       set newname for datafile  177 to

     "/u01/app/oracle/oradata/ownerbak/data_2312";

       set newname for datafile  178 to

     "/u01/app/oracle/oradata/ownerbak/ind_2312";

       set newname for datafile  179 to

     "/u01/app/oracle/oradata/ownerbak/data_2401";

       set newname for datafile  180 to

     "/u01/app/oracle/oradata/ownerbak/ind_2401";

       set newname for datafile  181 to

     "/u01/app/oracle/oradata/ownerbak/data_2402";

       set newname for datafile  182 to

     "/u01/app/oracle/oradata/ownerbak/ind_2402";

       set newname for datafile  183 to

     "/u01/app/oracle/oradata/ownerbak/data_2403";

       set newname for datafile  184 to

     "/u01/app/oracle/oradata/ownerbak/ind_2403";

       set newname for datafile  185 to

     "/u01/app/oracle/oradata/ownerbak/data_2404";

       set newname for datafile  186 to

     "/u01/app/oracle/oradata/ownerbak/ind_2404";

       set newname for datafile  187 to

     "/u01/app/oracle/oradata/ownerbak/data_2405";

       set newname for datafile  188 to

     "/u01/app/oracle/oradata/ownerbak/ind_2405";

       set newname for datafile  189 to

     "/u01/app/oracle/oradata/ownerbak/data_2406";

       set newname for datafile  190 to

     "/u01/app/oracle/oradata/ownerbak/ind_2406";

       set newname for datafile  191 to

     "/u01/app/oracle/oradata/ownerbak/data_2407";

       set newname for datafile  192 to

     "/u01/app/oracle/oradata/ownerbak/ind_2407";

       set newname for datafile  193 to

     "/u01/app/oracle/oradata/ownerbak/data_2408";

       set newname for datafile  194 to

     "/u01/app/oracle/oradata/ownerbak/ind_2408";

       set newname for datafile  195 to

     "/u01/app/oracle/oradata/ownerbak/data_2409";

       set newname for datafile  196 to

     "/u01/app/oracle/oradata/ownerbak/ind_2409";

       set newname for datafile  197 to

     "/u01/app/oracle/oradata/ownerbak/data_2410";

       set newname for datafile  198 to

     "/u01/app/oracle/oradata/ownerbak/ind_2410";

       set newname for datafile  199 to

     "/u01/app/oracle/oradata/ownerbak/data_2411";

       set newname for datafile  200 to

     "/u01/app/oracle/oradata/ownerbak/ind_2411";

       backup as copy reuse

       datafile  1 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/system01.dbf"   datafile

     2 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/sysaux01.dbf"   datafile

     3 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/undotbs01.dbf"   datafile

     4 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/users01.dbf"   datafile

     5 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/example01.dbf"   datafile

     6 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/owner.dbf"   datafile

     7 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/lvsksk_i_gy.dbf"   datafile

     8 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/lvsksk_t_gy.dbf"   datafile

     9 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/LVSKSK_T_GY_JSP.dbf"   datafile

     10 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/LVSKSK_I_JS_P_JSP.dbf"   datafile

     11 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1601"   datafile

     12 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1601"   datafile

     13 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1602"   datafile

     14 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1602"   datafile

     15 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1603"   datafile

     16 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1603"   datafile

     17 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1604"   datafile

     18 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1604"   datafile

     19 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1605"   datafile

     20 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1605"   datafile

     21 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1606"   datafile

     22 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1606"   datafile

     23 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1607"   datafile

     24 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1607"   datafile

     25 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1608"   datafile

     26 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1608"   datafile

     27 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1609"   datafile

     28 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1609"   datafile

     29 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1610"   datafile

     30 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1610"   datafile

     31 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1611"   datafile

     32 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1611"   datafile

     33 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1612"   datafile

     34 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1612"   datafile

     35 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1701"   datafile

     36 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1701"   datafile

     37 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1702"   datafile

     38 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1702"   datafile

     39 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1703"   datafile

     40 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1703"   datafile

     41 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1704"   datafile

     42 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1704"   datafile

     43 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1705"   datafile

     44 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1705"   datafile

     45 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1706"   datafile

     46 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1706"   datafile

     47 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1707"   datafile

     48 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1707"   datafile

     49 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1708"   datafile

     50 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1708"   datafile

     51 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1709"   datafile

     52 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1709"   datafile

     53 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1710"   datafile

     54 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1710"   datafile

     55 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1711"   datafile

     56 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1711"   datafile

     57 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1712"   datafile

     58 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1712"   datafile

     59 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1801"   datafile

     60 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1801"   datafile

     61 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1802"   datafile

     62 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1802"   datafile

     63 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1803"   datafile

     64 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1803"   datafile

     65 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1804"   datafile

     66 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1804"   datafile

     67 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1805"   datafile

     68 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1805"   datafile

     69 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1806"   datafile

     70 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1806"   datafile

     71 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1807"   datafile

     72 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1807"   datafile

     73 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1808"   datafile

     74 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1808"   datafile

     75 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1809"   datafile

     76 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1809"   datafile

     77 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1810"   datafile

     78 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1810"   datafile

     79 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1811"   datafile

     80 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1811"   datafile

     81 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_1812"   datafile

     82 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_1812"   datafile

     83 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2001"   datafile

     84 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2001"   datafile

     85 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2002"   datafile

     86 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2002"   datafile

     87 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2003"   datafile

     88 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2003"   datafile

     89 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2004"   datafile

     90 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2004"   datafile

     91 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2005"   datafile

     92 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2005"   datafile

     93 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2006"   datafile

     94 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2006"   datafile

     95 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2007"   datafile

     96 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2007"   datafile

     97 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2008"   datafile

     98 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2008"   datafile

     99 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2009"   datafile

     100 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2009"   datafile

     101 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2010"   datafile

     102 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2010"   datafile

     103 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2011"   datafile

     104 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2011"   datafile

     105 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2012"   datafile

     106 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2012"   datafile

     107 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2101"   datafile

     108 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2101"   datafile

     109 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2102"   datafile

     110 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2102"   datafile

     111 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2103"   datafile

     112 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2103"   datafile

     113 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2104"   datafile

     114 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2104"   datafile

     115 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2105"   datafile

     116 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2105"   datafile

     117 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2106"   datafile

     118 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2106"   datafile

     119 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2107"   datafile

     120 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2107"   datafile

     121 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2108"   datafile

     122 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2108"   datafile

     123 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2109"   datafile

     124 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2109"   datafile

     125 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2110"   datafile

     126 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2110"   datafile

     127 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2111"   datafile

     128 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2111"   datafile

     129 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2112"   datafile

     130 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2112"   datafile

     131 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2201"   datafile

     132 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2201"   datafile

     133 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2202"   datafile

     134 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2202"   datafile

     135 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2203"   datafile

     136 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2203"   datafile

     137 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2204"   datafile

     138 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2204"   datafile

     139 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2205"   datafile

     140 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2205"   datafile

     141 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2206"   datafile

     142 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2206"   datafile

     143 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2207"   datafile

     144 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2207"   datafile

     145 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2208"   datafile

     146 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2208"   datafile

     147 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2209"   datafile

     148 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2209"   datafile

     149 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2210"   datafile

     150 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2210"   datafile

     151 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2211"   datafile

     152 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2211"   datafile

     153 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2212"   datafile

     154 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2212"   datafile

     155 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2301"   datafile

     156 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2301"   datafile

     157 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2302"   datafile

     158 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2302"   datafile

     159 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2303"   datafile

     160 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2303"   datafile

     161 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2304"   datafile

     162 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2304"   datafile

     163 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2305"   datafile

     164 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2305"   datafile

     165 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2306"   datafile

     166 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2306"   datafile

     167 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2307"   datafile

     168 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2307"   datafile

     169 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2308"   datafile

     170 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2308"   datafile

     171 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2309"   datafile

     172 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2309"   datafile

     173 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2310"   datafile

     174 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2310"   datafile

     175 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2311"   datafile

     176 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2311"   datafile

     177 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2312"   datafile

     178 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2312"   datafile

     179 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2401"   datafile

     180 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2401"   datafile

     181 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2402"   datafile

     182 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2402"   datafile

     183 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2403"   datafile

     184 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2403"   datafile

     185 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2404"   datafile

     186 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2404"   datafile

     187 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2405"   datafile

     188 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2405"   datafile

     189 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2406"   datafile

     190 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2406"   datafile

     191 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2407"   datafile

     192 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2407"   datafile

     193 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2408"   datafile

     194 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2408"   datafile

     195 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2409"   datafile

     196 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2409"   datafile

     197 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2410"   datafile

     198 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2410"   datafile

     199 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/data_2411"   datafile

     200 auxiliary format

     "/u01/app/oracle/oradata/ownerbak/ind_2411"   ;

       sql 'alter system archive log current';

    }

    executing Memory Script

    executing command: SET NEWNAME

    renamed tempfile 1 to /u01/app/oracle/oradata/ownerbak/temp01.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

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    executing command: SET NEWNAME

    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=00031 name=/u01/app/oracle/oradata/owner/data_1611

    output file name=/u01/app/oracle/oradata/ownerbak/data_1611 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00004 name=/u01/app/oracle/oradata/owner/users01.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/users01.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00006 name=/u01/app/oracle/oradata/owner/owner.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/owner.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00003 name=/u01/app/oracle/oradata/owner/undotbs01.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/undotbs01.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00007 name=/u01/app/oracle/oradata/owner/lvsksk_i_gy.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/lvsksk_i_gy.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00008 name=/u01/app/oracle/oradata/owner/lvsksk_t_gy.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/lvsksk_t_gy.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00009 name=/u01/app/oracle/oradata/owner/LVSKSK_T_GY_JSP.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/LVSKSK_T_GY_JSP.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00010 name=/u01/app/oracle/oradata/owner/LVSKSK_I_JS_P_JSP.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/LVSKSK_I_JS_P_JSP.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00002 name=/u01/app/oracle/oradata/owner/sysaux01.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/sysaux01.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00001 name=/u01/app/oracle/oradata/owner/system01.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/system01.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00053 name=/u01/app/oracle/oradata/owner/data_1710

    output file name=/u01/app/oracle/oradata/ownerbak/data_1710 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00029 name=/u01/app/oracle/oradata/owner/data_1610

    output file name=/u01/app/oracle/oradata/ownerbak/data_1610 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/example01.dbf

    output file name=/u01/app/oracle/oradata/ownerbak/example01.dbf tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00035 name=/u01/app/oracle/oradata/owner/data_1701

    output file name=/u01/app/oracle/oradata/ownerbak/data_1701 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1612

    output file name=/u01/app/oracle/oradata/ownerbak/data_1612 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1601

    output file name=/u01/app/oracle/oradata/ownerbak/data_1601 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1601

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1601 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1602

    output file name=/u01/app/oracle/oradata/ownerbak/data_1602 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1602

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1602 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1603

    output file name=/u01/app/oracle/oradata/ownerbak/data_1603 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1603

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1603 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1604

    output file name=/u01/app/oracle/oradata/ownerbak/data_1604 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1604

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1604 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1605

    output file name=/u01/app/oracle/oradata/ownerbak/data_1605 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1605

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1605 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1606

    output file name=/u01/app/oracle/oradata/ownerbak/data_1606 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1606

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1606 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1607

    output file name=/u01/app/oracle/oradata/ownerbak/data_1607 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1607

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1607 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1608

    output file name=/u01/app/oracle/oradata/ownerbak/data_1608 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1608

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1608 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1609

    output file name=/u01/app/oracle/oradata/ownerbak/data_1609 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1609

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1609 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1610

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1610 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1611

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1611 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1612

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1612 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1701

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1701 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1702

    output file name=/u01/app/oracle/oradata/ownerbak/data_1702 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1702

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1702 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1703

    output file name=/u01/app/oracle/oradata/ownerbak/data_1703 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1703

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1703 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1704

    output file name=/u01/app/oracle/oradata/ownerbak/data_1704 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1704

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1704 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1705

    output file name=/u01/app/oracle/oradata/ownerbak/data_1705 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1705

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1705 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1706

    output file name=/u01/app/oracle/oradata/ownerbak/data_1706 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1706

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1706 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1707

    output file name=/u01/app/oracle/oradata/ownerbak/data_1707 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1707

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1707 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1708

    output file name=/u01/app/oracle/oradata/ownerbak/data_1708 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1708

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1708 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1709

    output file name=/u01/app/oracle/oradata/ownerbak/data_1709 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1709

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1709 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1710

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1710 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1711

    output file name=/u01/app/oracle/oradata/ownerbak/data_1711 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1711

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1711 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1712

    output file name=/u01/app/oracle/oradata/ownerbak/data_1712 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1712

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1712 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1801

    output file name=/u01/app/oracle/oradata/ownerbak/data_1801 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1801

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1801 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1802

    output file name=/u01/app/oracle/oradata/ownerbak/data_1802 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1802

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1802 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1803

    output file name=/u01/app/oracle/oradata/ownerbak/data_1803 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1803

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1803 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1804

    output file name=/u01/app/oracle/oradata/ownerbak/data_1804 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1804

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1804 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1805

    output file name=/u01/app/oracle/oradata/ownerbak/data_1805 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1805

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1805 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1806

    output file name=/u01/app/oracle/oradata/ownerbak/data_1806 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1806

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1806 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1807

    output file name=/u01/app/oracle/oradata/ownerbak/data_1807 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1807

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1807 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1808

    output file name=/u01/app/oracle/oradata/ownerbak/data_1808 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1808

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1808 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1809

    output file name=/u01/app/oracle/oradata/ownerbak/data_1809 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1809

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1809 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1810

    output file name=/u01/app/oracle/oradata/ownerbak/data_1810 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00078 name=/u01/app/oracle/oradata/owner/ind_1810

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1810 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1811

    output file name=/u01/app/oracle/oradata/ownerbak/data_1811 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1811

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1811 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_1812

    output file name=/u01/app/oracle/oradata/ownerbak/data_1812 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_1812

    output file name=/u01/app/oracle/oradata/ownerbak/ind_1812 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2001

    output file name=/u01/app/oracle/oradata/ownerbak/data_2001 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2001

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2001 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2002

    output file name=/u01/app/oracle/oradata/ownerbak/data_2002 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2002

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2002 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2003

    output file name=/u01/app/oracle/oradata/ownerbak/data_2003 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2003

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2003 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2004

    output file name=/u01/app/oracle/oradata/ownerbak/data_2004 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2004

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2004 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2005

    output file name=/u01/app/oracle/oradata/ownerbak/data_2005 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2005

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2005 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2006

    output file name=/u01/app/oracle/oradata/ownerbak/data_2006 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2006

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2006 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2007

    output file name=/u01/app/oracle/oradata/ownerbak/data_2007 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2007

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2007 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2008

    output file name=/u01/app/oracle/oradata/ownerbak/data_2008 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2008

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2008 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2009

    output file name=/u01/app/oracle/oradata/ownerbak/data_2009 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2009

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2009 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2010

    output file name=/u01/app/oracle/oradata/ownerbak/data_2010 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2010

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2010 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2011

    output file name=/u01/app/oracle/oradata/ownerbak/data_2011 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2011

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2011 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2012

    output file name=/u01/app/oracle/oradata/ownerbak/data_2012 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2012

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2012 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2101

    output file name=/u01/app/oracle/oradata/ownerbak/data_2101 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2101

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2101 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2102

    output file name=/u01/app/oracle/oradata/ownerbak/data_2102 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2102

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2102 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2103

    output file name=/u01/app/oracle/oradata/ownerbak/data_2103 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2103

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2103 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2104

    output file name=/u01/app/oracle/oradata/ownerbak/data_2104 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2104

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2104 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2105

    output file name=/u01/app/oracle/oradata/ownerbak/data_2105 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2105

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2105 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2106

    output file name=/u01/app/oracle/oradata/ownerbak/data_2106 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2106

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2106 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2107

    output file name=/u01/app/oracle/oradata/ownerbak/data_2107 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2107

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2107 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2108

    output file name=/u01/app/oracle/oradata/ownerbak/data_2108 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2108

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2108 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2109

    output file name=/u01/app/oracle/oradata/ownerbak/data_2109 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2109

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2109 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2110

    output file name=/u01/app/oracle/oradata/ownerbak/data_2110 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2110

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2110 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2111

    output file name=/u01/app/oracle/oradata/ownerbak/data_2111 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2111

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2111 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2112

    output file name=/u01/app/oracle/oradata/ownerbak/data_2112 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2112

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2112 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2201

    output file name=/u01/app/oracle/oradata/ownerbak/data_2201 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00132 name=/u01/app/oracle/oradata/owner/ind_2201

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2201 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2202

    output file name=/u01/app/oracle/oradata/ownerbak/data_2202 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2202

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2202 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2203

    output file name=/u01/app/oracle/oradata/ownerbak/data_2203 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2203

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2203 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2204

    output file name=/u01/app/oracle/oradata/ownerbak/data_2204 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2204

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2204 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2205

    output file name=/u01/app/oracle/oradata/ownerbak/data_2205 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2205

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2205 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2206

    output file name=/u01/app/oracle/oradata/ownerbak/data_2206 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2206

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2206 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2207

    output file name=/u01/app/oracle/oradata/ownerbak/data_2207 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2207

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2207 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2208

    output file name=/u01/app/oracle/oradata/ownerbak/data_2208 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2208

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2208 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2209

    output file name=/u01/app/oracle/oradata/ownerbak/data_2209 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2209

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2209 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2210

    output file name=/u01/app/oracle/oradata/ownerbak/data_2210 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2210

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2210 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2211

    output file name=/u01/app/oracle/oradata/ownerbak/data_2211 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2211

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2211 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2212

    output file name=/u01/app/oracle/oradata/ownerbak/data_2212 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/ind_2212

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2212 tag=TAG20170829T173707

    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=/u01/app/oracle/oradata/owner/data_2301

    output file name=/u01/app/oracle/oradata/ownerbak/data_2301 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00156 name=/u01/app/oracle/oradata/owner/ind_2301

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2301 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00157 name=/u01/app/oracle/oradata/owner/data_2302

    output file name=/u01/app/oracle/oradata/ownerbak/data_2302 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00158 name=/u01/app/oracle/oradata/owner/ind_2302

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2302 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00159 name=/u01/app/oracle/oradata/owner/data_2303

    output file name=/u01/app/oracle/oradata/ownerbak/data_2303 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00160 name=/u01/app/oracle/oradata/owner/ind_2303

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2303 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00161 name=/u01/app/oracle/oradata/owner/data_2304

    output file name=/u01/app/oracle/oradata/ownerbak/data_2304 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00162 name=/u01/app/oracle/oradata/owner/ind_2304

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2304 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00163 name=/u01/app/oracle/oradata/owner/data_2305

    output file name=/u01/app/oracle/oradata/ownerbak/data_2305 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00164 name=/u01/app/oracle/oradata/owner/ind_2305

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2305 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00165 name=/u01/app/oracle/oradata/owner/data_2306

    output file name=/u01/app/oracle/oradata/ownerbak/data_2306 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00166 name=/u01/app/oracle/oradata/owner/ind_2306

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2306 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00167 name=/u01/app/oracle/oradata/owner/data_2307

    output file name=/u01/app/oracle/oradata/ownerbak/data_2307 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00168 name=/u01/app/oracle/oradata/owner/ind_2307

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2307 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00169 name=/u01/app/oracle/oradata/owner/data_2308

    output file name=/u01/app/oracle/oradata/ownerbak/data_2308 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00170 name=/u01/app/oracle/oradata/owner/ind_2308

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2308 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00171 name=/u01/app/oracle/oradata/owner/data_2309

    output file name=/u01/app/oracle/oradata/ownerbak/data_2309 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00172 name=/u01/app/oracle/oradata/owner/ind_2309

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2309 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00173 name=/u01/app/oracle/oradata/owner/data_2310

    output file name=/u01/app/oracle/oradata/ownerbak/data_2310 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00174 name=/u01/app/oracle/oradata/owner/ind_2310

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2310 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00175 name=/u01/app/oracle/oradata/owner/data_2311

    output file name=/u01/app/oracle/oradata/ownerbak/data_2311 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00176 name=/u01/app/oracle/oradata/owner/ind_2311

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2311 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00177 name=/u01/app/oracle/oradata/owner/data_2312

    output file name=/u01/app/oracle/oradata/ownerbak/data_2312 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00178 name=/u01/app/oracle/oradata/owner/ind_2312

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2312 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00179 name=/u01/app/oracle/oradata/owner/data_2401

    output file name=/u01/app/oracle/oradata/ownerbak/data_2401 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00180 name=/u01/app/oracle/oradata/owner/ind_2401

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2401 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00181 name=/u01/app/oracle/oradata/owner/data_2402

    output file name=/u01/app/oracle/oradata/ownerbak/data_2402 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00182 name=/u01/app/oracle/oradata/owner/ind_2402

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2402 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00183 name=/u01/app/oracle/oradata/owner/data_2403

    output file name=/u01/app/oracle/oradata/ownerbak/data_2403 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00184 name=/u01/app/oracle/oradata/owner/ind_2403

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2403 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00185 name=/u01/app/oracle/oradata/owner/data_2404

    output file name=/u01/app/oracle/oradata/ownerbak/data_2404 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00186 name=/u01/app/oracle/oradata/owner/ind_2404

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2404 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00187 name=/u01/app/oracle/oradata/owner/data_2405

    output file name=/u01/app/oracle/oradata/ownerbak/data_2405 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00188 name=/u01/app/oracle/oradata/owner/ind_2405

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2405 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00189 name=/u01/app/oracle/oradata/owner/data_2406

    output file name=/u01/app/oracle/oradata/ownerbak/data_2406 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00190 name=/u01/app/oracle/oradata/owner/ind_2406

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2406 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00191 name=/u01/app/oracle/oradata/owner/data_2407

    output file name=/u01/app/oracle/oradata/ownerbak/data_2407 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00192 name=/u01/app/oracle/oradata/owner/ind_2407

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2407 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00193 name=/u01/app/oracle/oradata/owner/data_2408

    output file name=/u01/app/oracle/oradata/ownerbak/data_2408 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00194 name=/u01/app/oracle/oradata/owner/ind_2408

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2408 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00195 name=/u01/app/oracle/oradata/owner/data_2409

    output file name=/u01/app/oracle/oradata/ownerbak/data_2409 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00196 name=/u01/app/oracle/oradata/owner/ind_2409

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2409 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00197 name=/u01/app/oracle/oradata/owner/data_2410

    output file name=/u01/app/oracle/oradata/ownerbak/data_2410 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00198 name=/u01/app/oracle/oradata/owner/ind_2410

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2410 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00199 name=/u01/app/oracle/oradata/owner/data_2411

    output file name=/u01/app/oracle/oradata/ownerbak/data_2411 tag=TAG20170829T173707

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

    channel ORA_DISK_1: starting datafile copy

    input datafile file number=00200 name=/u01/app/oracle/oradata/owner/ind_2411

    output file name=/u01/app/oracle/oradata/ownerbak/ind_2411 tag=TAG20170829T173707

    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  "/u01/app/oracle/oradata/arch_dir/owner/1_1271_948710508.dbf" auxiliary format

     "/home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf"   archivelog like

     "/u01/app/oracle/oradata/arch_dir/owner/1_1272_948710508.dbf" auxiliary format

     "/home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf"   ;

       catalog clone archivelog  "/home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf";

       catalog clone archivelog  "/home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf";

       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=1271 RECID=23 STAMP=953314627

    output file name=/home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf RECID=0 STAMP=0

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

    channel ORA_DISK_1: starting archived log copy

    input archived log thread=1 sequence=1272 RECID=24 STAMP=953315150

    output file name=/home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf 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=/home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf RECID=1 STAMP=953315153

    cataloged archived log

    archived log file name=/home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf RECID=2 STAMP=953315153

    datafile 1 switched to datafile copy

    input datafile copy RECID=5 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/system01.dbf

    datafile 2 switched to datafile copy

    input datafile copy RECID=6 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/sysaux01.dbf

    datafile 3 switched to datafile copy

    input datafile copy RECID=7 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/undotbs01.dbf

    datafile 4 switched to datafile copy

    input datafile copy RECID=8 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/users01.dbf

    datafile 5 switched to datafile copy

    input datafile copy RECID=9 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/example01.dbf

    datafile 6 switched to datafile copy

    input datafile copy RECID=10 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/owner.dbf

    datafile 7 switched to datafile copy

    input datafile copy RECID=11 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/lvsksk_i_gy.dbf

    datafile 8 switched to datafile copy

    input datafile copy RECID=12 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/lvsksk_t_gy.dbf

    datafile 9 switched to datafile copy

    input datafile copy RECID=13 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/LVSKSK_T_GY_JSP.dbf

    datafile 10 switched to datafile copy

    input datafile copy RECID=14 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/LVSKSK_I_JS_P_JSP.dbf

    datafile 11 switched to datafile copy

    input datafile copy RECID=15 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1601

    datafile 12 switched to datafile copy

    input datafile copy RECID=16 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1601

    datafile 13 switched to datafile copy

    input datafile copy RECID=17 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1602

    datafile 14 switched to datafile copy

    input datafile copy RECID=18 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1602

    datafile 15 switched to datafile copy

    input datafile copy RECID=19 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1603

    datafile 16 switched to datafile copy

    input datafile copy RECID=20 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1603

    datafile 17 switched to datafile copy

    input datafile copy RECID=21 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1604

    datafile 18 switched to datafile copy

    input datafile copy RECID=22 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1604

    datafile 19 switched to datafile copy

    input datafile copy RECID=23 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1605

    datafile 20 switched to datafile copy

    input datafile copy RECID=24 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1605

    datafile 21 switched to datafile copy

    input datafile copy RECID=25 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1606

    datafile 22 switched to datafile copy

    input datafile copy RECID=26 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1606

    datafile 23 switched to datafile copy

    input datafile copy RECID=27 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1607

    datafile 24 switched to datafile copy

    input datafile copy RECID=28 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1607

    datafile 25 switched to datafile copy

    input datafile copy RECID=29 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1608

    datafile 26 switched to datafile copy

    input datafile copy RECID=30 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1608

    datafile 27 switched to datafile copy

    input datafile copy RECID=31 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1609

    datafile 28 switched to datafile copy

    input datafile copy RECID=32 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1609

    datafile 29 switched to datafile copy

    input datafile copy RECID=33 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1610

    datafile 30 switched to datafile copy

    input datafile copy RECID=34 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1610

    datafile 31 switched to datafile copy

    input datafile copy RECID=35 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1611

    datafile 32 switched to datafile copy

    input datafile copy RECID=36 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1611

    datafile 33 switched to datafile copy

    input datafile copy RECID=37 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1612

    datafile 34 switched to datafile copy

    input datafile copy RECID=38 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1612

    datafile 35 switched to datafile copy

    input datafile copy RECID=39 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1701

    datafile 36 switched to datafile copy

    input datafile copy RECID=40 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1701

    datafile 37 switched to datafile copy

    input datafile copy RECID=41 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1702

    datafile 38 switched to datafile copy

    input datafile copy RECID=42 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1702

    datafile 39 switched to datafile copy

    input datafile copy RECID=43 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1703

    datafile 40 switched to datafile copy

    input datafile copy RECID=44 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1703

    datafile 41 switched to datafile copy

    input datafile copy RECID=45 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1704

    datafile 42 switched to datafile copy

    input datafile copy RECID=46 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1704

    datafile 43 switched to datafile copy

    input datafile copy RECID=47 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1705

    datafile 44 switched to datafile copy

    input datafile copy RECID=48 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1705

    datafile 45 switched to datafile copy

    input datafile copy RECID=49 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1706

    datafile 46 switched to datafile copy

    input datafile copy RECID=50 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1706

    datafile 47 switched to datafile copy

    input datafile copy RECID=51 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1707

    datafile 48 switched to datafile copy

    input datafile copy RECID=52 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1707

    datafile 49 switched to datafile copy

    input datafile copy RECID=53 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1708

    datafile 50 switched to datafile copy

    input datafile copy RECID=54 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1708

    datafile 51 switched to datafile copy

    input datafile copy RECID=55 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1709

    datafile 52 switched to datafile copy

    input datafile copy RECID=56 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1709

    datafile 53 switched to datafile copy

    input datafile copy RECID=57 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1710

    datafile 54 switched to datafile copy

    input datafile copy RECID=58 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1710

    datafile 55 switched to datafile copy

    input datafile copy RECID=59 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1711

    datafile 56 switched to datafile copy

    input datafile copy RECID=60 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1711

    datafile 57 switched to datafile copy

    input datafile copy RECID=61 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1712

    datafile 58 switched to datafile copy

    input datafile copy RECID=62 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1712

    datafile 59 switched to datafile copy

    input datafile copy RECID=63 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1801

    datafile 60 switched to datafile copy

    input datafile copy RECID=64 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1801

    datafile 61 switched to datafile copy

    input datafile copy RECID=65 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1802

    datafile 62 switched to datafile copy

    input datafile copy RECID=66 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1802

    datafile 63 switched to datafile copy

    input datafile copy RECID=67 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1803

    datafile 64 switched to datafile copy

    input datafile copy RECID=68 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1803

    datafile 65 switched to datafile copy

    input datafile copy RECID=69 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1804

    datafile 66 switched to datafile copy

    input datafile copy RECID=70 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1804

    datafile 67 switched to datafile copy

    input datafile copy RECID=71 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1805

    datafile 68 switched to datafile copy

    input datafile copy RECID=72 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1805

    datafile 69 switched to datafile copy

    input datafile copy RECID=73 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1806

    datafile 70 switched to datafile copy

    input datafile copy RECID=74 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1806

    datafile 71 switched to datafile copy

    input datafile copy RECID=75 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1807

    datafile 72 switched to datafile copy

    input datafile copy RECID=76 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1807

    datafile 73 switched to datafile copy

    input datafile copy RECID=77 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1808

    datafile 74 switched to datafile copy

    input datafile copy RECID=78 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1808

    datafile 75 switched to datafile copy

    input datafile copy RECID=79 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1809

    datafile 76 switched to datafile copy

    input datafile copy RECID=80 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1809

    datafile 77 switched to datafile copy

    input datafile copy RECID=81 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1810

    datafile 78 switched to datafile copy

    input datafile copy RECID=82 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1810

    datafile 79 switched to datafile copy

    input datafile copy RECID=83 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1811

    datafile 80 switched to datafile copy

    input datafile copy RECID=84 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1811

    datafile 81 switched to datafile copy

    input datafile copy RECID=85 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_1812

    datafile 82 switched to datafile copy

    input datafile copy RECID=86 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_1812

    datafile 83 switched to datafile copy

    input datafile copy RECID=87 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2001

    datafile 84 switched to datafile copy

    input datafile copy RECID=88 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2001

    datafile 85 switched to datafile copy

    input datafile copy RECID=89 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2002

    datafile 86 switched to datafile copy

    input datafile copy RECID=90 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2002

    datafile 87 switched to datafile copy

    input datafile copy RECID=91 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2003

    datafile 88 switched to datafile copy

    input datafile copy RECID=92 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2003

    datafile 89 switched to datafile copy

    input datafile copy RECID=93 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2004

    datafile 90 switched to datafile copy

    input datafile copy RECID=94 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2004

    datafile 91 switched to datafile copy

    input datafile copy RECID=95 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2005

    datafile 92 switched to datafile copy

    input datafile copy RECID=96 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2005

    datafile 93 switched to datafile copy

    input datafile copy RECID=97 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2006

    datafile 94 switched to datafile copy

    input datafile copy RECID=98 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2006

    datafile 95 switched to datafile copy

    input datafile copy RECID=99 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2007

    datafile 96 switched to datafile copy

    input datafile copy RECID=100 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2007

    datafile 97 switched to datafile copy

    input datafile copy RECID=101 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2008

    datafile 98 switched to datafile copy

    input datafile copy RECID=102 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2008

    datafile 99 switched to datafile copy

    input datafile copy RECID=103 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2009

    datafile 100 switched to datafile copy

    input datafile copy RECID=104 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2009

    datafile 101 switched to datafile copy

    input datafile copy RECID=105 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2010

    datafile 102 switched to datafile copy

    input datafile copy RECID=106 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2010

    datafile 103 switched to datafile copy

    input datafile copy RECID=107 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2011

    datafile 104 switched to datafile copy

    input datafile copy RECID=108 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2011

    datafile 105 switched to datafile copy

    input datafile copy RECID=109 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2012

    datafile 106 switched to datafile copy

    input datafile copy RECID=110 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2012

    datafile 107 switched to datafile copy

    input datafile copy RECID=111 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2101

    datafile 108 switched to datafile copy

    input datafile copy RECID=112 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2101

    datafile 109 switched to datafile copy

    input datafile copy RECID=113 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2102

    datafile 110 switched to datafile copy

    input datafile copy RECID=114 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2102

    datafile 111 switched to datafile copy

    input datafile copy RECID=115 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2103

    datafile 112 switched to datafile copy

    input datafile copy RECID=116 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2103

    datafile 113 switched to datafile copy

    input datafile copy RECID=117 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2104

    datafile 114 switched to datafile copy

    input datafile copy RECID=118 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2104

    datafile 115 switched to datafile copy

    input datafile copy RECID=119 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2105

    datafile 116 switched to datafile copy

    input datafile copy RECID=120 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2105

    datafile 117 switched to datafile copy

    input datafile copy RECID=121 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2106

    datafile 118 switched to datafile copy

    input datafile copy RECID=122 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2106

    datafile 119 switched to datafile copy

    input datafile copy RECID=123 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2107

    datafile 120 switched to datafile copy

    input datafile copy RECID=124 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2107

    datafile 121 switched to datafile copy

    input datafile copy RECID=125 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2108

    datafile 122 switched to datafile copy

    input datafile copy RECID=126 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2108

    datafile 123 switched to datafile copy

    input datafile copy RECID=127 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2109

    datafile 124 switched to datafile copy

    input datafile copy RECID=128 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2109

    datafile 125 switched to datafile copy

    input datafile copy RECID=129 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2110

    datafile 126 switched to datafile copy

    input datafile copy RECID=130 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2110

    datafile 127 switched to datafile copy

    input datafile copy RECID=131 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2111

    datafile 128 switched to datafile copy

    input datafile copy RECID=132 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2111

    datafile 129 switched to datafile copy

    input datafile copy RECID=133 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2112

    datafile 130 switched to datafile copy

    input datafile copy RECID=134 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2112

    datafile 131 switched to datafile copy

    input datafile copy RECID=135 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2201

    datafile 132 switched to datafile copy

    input datafile copy RECID=136 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2201

    datafile 133 switched to datafile copy

    input datafile copy RECID=137 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2202

    datafile 134 switched to datafile copy

    input datafile copy RECID=138 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2202

    datafile 135 switched to datafile copy

    input datafile copy RECID=139 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2203

    datafile 136 switched to datafile copy

    input datafile copy RECID=140 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2203

    datafile 137 switched to datafile copy

    input datafile copy RECID=141 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2204

    datafile 138 switched to datafile copy

    input datafile copy RECID=142 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2204

    datafile 139 switched to datafile copy

    input datafile copy RECID=143 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2205

    datafile 140 switched to datafile copy

    input datafile copy RECID=144 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2205

    datafile 141 switched to datafile copy

    input datafile copy RECID=145 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2206

    datafile 142 switched to datafile copy

    input datafile copy RECID=146 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2206

    datafile 143 switched to datafile copy

    input datafile copy RECID=147 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2207

    datafile 144 switched to datafile copy

    input datafile copy RECID=148 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2207

    datafile 145 switched to datafile copy

    input datafile copy RECID=149 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2208

    datafile 146 switched to datafile copy

    input datafile copy RECID=150 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2208

    datafile 147 switched to datafile copy

    input datafile copy RECID=151 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2209

    datafile 148 switched to datafile copy

    input datafile copy RECID=152 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2209

    datafile 149 switched to datafile copy

    input datafile copy RECID=153 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2210

    datafile 150 switched to datafile copy

    input datafile copy RECID=154 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2210

    datafile 151 switched to datafile copy

    input datafile copy RECID=155 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2211

    datafile 152 switched to datafile copy

    input datafile copy RECID=156 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2211

    datafile 153 switched to datafile copy

    input datafile copy RECID=157 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2212

    datafile 154 switched to datafile copy

    input datafile copy RECID=158 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2212

    datafile 155 switched to datafile copy

    input datafile copy RECID=159 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2301

    datafile 156 switched to datafile copy

    input datafile copy RECID=160 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2301

    datafile 157 switched to datafile copy

    input datafile copy RECID=161 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2302

    datafile 158 switched to datafile copy

    input datafile copy RECID=162 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2302

    datafile 159 switched to datafile copy

    input datafile copy RECID=163 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2303

    datafile 160 switched to datafile copy

    input datafile copy RECID=164 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2303

    datafile 161 switched to datafile copy

    input datafile copy RECID=165 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2304

    datafile 162 switched to datafile copy

    input datafile copy RECID=166 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2304

    datafile 163 switched to datafile copy

    input datafile copy RECID=167 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2305

    datafile 164 switched to datafile copy

    input datafile copy RECID=168 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2305

    datafile 165 switched to datafile copy

    input datafile copy RECID=169 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2306

    datafile 166 switched to datafile copy

    input datafile copy RECID=170 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2306

    datafile 167 switched to datafile copy

    input datafile copy RECID=171 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2307

    datafile 168 switched to datafile copy

    input datafile copy RECID=172 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2307

    datafile 169 switched to datafile copy

    input datafile copy RECID=173 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2308

    datafile 170 switched to datafile copy

    input datafile copy RECID=174 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2308

    datafile 171 switched to datafile copy

    input datafile copy RECID=175 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2309

    datafile 172 switched to datafile copy

    input datafile copy RECID=176 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2309

    datafile 173 switched to datafile copy

    input datafile copy RECID=177 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2310

    datafile 174 switched to datafile copy

    input datafile copy RECID=178 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2310

    datafile 175 switched to datafile copy

    input datafile copy RECID=179 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2311

    datafile 176 switched to datafile copy

    input datafile copy RECID=180 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2311

    datafile 177 switched to datafile copy

    input datafile copy RECID=181 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2312

    datafile 178 switched to datafile copy

    input datafile copy RECID=182 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2312

    datafile 179 switched to datafile copy

    input datafile copy RECID=183 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2401

    datafile 180 switched to datafile copy

    input datafile copy RECID=184 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2401

    datafile 181 switched to datafile copy

    input datafile copy RECID=185 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2402

    datafile 182 switched to datafile copy

    input datafile copy RECID=186 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2402

    datafile 183 switched to datafile copy

    input datafile copy RECID=187 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2403

    datafile 184 switched to datafile copy

    input datafile copy RECID=188 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2403

    datafile 185 switched to datafile copy

    input datafile copy RECID=189 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2404

    datafile 186 switched to datafile copy

    input datafile copy RECID=190 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2404

    datafile 187 switched to datafile copy

    input datafile copy RECID=191 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2405

    datafile 188 switched to datafile copy

    input datafile copy RECID=192 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2405

    datafile 189 switched to datafile copy

    input datafile copy RECID=193 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2406

    datafile 190 switched to datafile copy

    input datafile copy RECID=194 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2406

    datafile 191 switched to datafile copy

    input datafile copy RECID=195 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2407

    datafile 192 switched to datafile copy

    input datafile copy RECID=196 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2407

    datafile 193 switched to datafile copy

    input datafile copy RECID=197 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2408

    datafile 194 switched to datafile copy

    input datafile copy RECID=198 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2408

    datafile 195 switched to datafile copy

    input datafile copy RECID=199 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2409

    datafile 196 switched to datafile copy

    input datafile copy RECID=200 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2409

    datafile 197 switched to datafile copy

    input datafile copy RECID=201 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2410

    datafile 198 switched to datafile copy

    input datafile copy RECID=202 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2410

    datafile 199 switched to datafile copy

    input datafile copy RECID=203 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/data_2411

    datafile 200 switched to datafile copy

    input datafile copy RECID=204 STAMP=953315153 file name=/u01/app/oracle/oradata/ownerbak/ind_2411

    contents of Memory Script:

    {

       set until scn  9287155;

       recover

       standby

       clone database

        delete archivelog

       ;

    }

    executing Memory Script

    executing command: SET until clause

    Starting recover at 29-AUG-17

    allocated channel: ORA_AUX_DISK_1

    channel ORA_AUX_DISK_1: SID=18 device type=DISK

    starting media recovery

    archived log for thread 1 with sequence 1271 is already on disk as file /home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf

    archived log for thread 1 with sequence 1272 is already on disk as file /home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf

    archived log file name=/home/oracle/arch_dir/ownerbak/1_1271_948710508.dbf thread=1 sequence=1271

    archived log file name=/home/oracle/arch_dir/ownerbak/1_1272_948710508.dbf thread=1 sequence=1272

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

    Finished recover at 29-AUG-17

    Finished Duplicate Db at 29-AUG-17

    Recovery Manager complete.

    以上创建完成了物理standby数据库(最后的错误警告信息可以忽略,我们在后面的附录1详细解释这个错误信息)。但是备库数据库还没有开始应用redo log。

    12. 备库创建standby redo log,standby redo log大小等于主库online redo log大小,注 备库的standby log 应比主库的online log 多一组:

    SYS(125_13)@ownerbak> alter database open;

    Database altered.

    SYS(125_13)@ownerbak> ALTER DATABASE ADD STANDBY LOGFILE 'srl1.f' SIZE 52428800;

    Database altered.

    SYS(125_13)@ownerbak> ALTER DATABASE ADD STANDBY LOGFILE 'srl2.f' SIZE 52428800;

    Database altered.

    SYS(125_13)@ownerbak> ALTER DATABASE ADD STANDBY LOGFILE 'srl3.f' SIZE 52428800;

    Database altered.

    SYS(125_13)@ownerbak> ALTER DATABASE ADD STANDBY LOGFILE 'srl4.f' SIZE 52428800;

    Database altered.

    SYS(125_13)@ownerbak> set linesize 1000

    SYS(125_13)@ownerbak> set pagesize 1000

    SYS(125_13)@ownerbak> set long 100

    SYS(125_13)@ownerbak> col archived for a10

    SQL> select sequence#,used,archived,status from v$standby_log;

     SEQUENCE#       USED ARCHIVED   STATUS

    ---------- ---------- ---------- ----------

             0          0 YES        UNASSIGNED

             0          0 YES        UNASSIGNED

             0          0 YES        UNASSIGNED

             0          0 YES        UNASSIGNED

    13. 运行下面的命令开始应用redo log:

    SYS(14_17)@ownerbak> alter database recover managed standby database using current logfile disconnect from session;

    alter database recover managed standby database using current logfile disconnect from session;

    *

    ERROR at line 1:

    ORA-01153: an incompatible media recovery is active

    SYS(14_17)@ownerbak> alter database recover managed standby database cancel;

    Database altered.

    SYS(14_17)@ownerbak> alter database recover managed standby database using current logfile disconnect from session;

    Database altered.

    以上的全部步骤就配置完成了物理standby数据库,并且开始应用redo log。

    附录1

    ----------

    在创建备库时最后报出的错误警告信息ORA-19527和在MRP开始应用redo log时,alert log中报出下面的错误信息:

     

    Errors in file /u01/app/diag/rdbms/orabak/orabak/trace/orabak_mrp0_7644.trc:

    ORA-00313: open failed for members of log group 1 of thread 1

    ORA-00312: online log 1 thread 1: '/home/oracle/app/oradata/orcl/redo01.log'

    ORA-27037: unable to obtain file status

    Linux Error: 2: No such file or directory

    .....

    Errors in file /u01/app/diag/rdbms/orabak/orabak/trace/orabak_mrp0_7644.trc:

    ORA-19527: physical standby redo log must be renamed

    ORA-00312: online log 1 thread 1: '/home/oracle/app/oradata/orcl/redo01.log'

     

    以上错误的原因:

    oracle为了加快备库与主库switchover的速度,从10.2开始增加了一个增强的功能,就是当MRP启动时会去清理备库上online redo log。造成以上2个错误有2个原因,第一个是备库没有创建online redo log,第二个是备库没有设置log_file_name_convert参数。

     

    解决方法:

    方法#1:如果不考虑switchover(备库上不创建online reod log),那么可以忽略这个错误,因为这个错只是一个提示性的信息,不会影响备库的MRP的工作。

    方法#2:如果考虑switchover,在备库上创建online reod log,并且设置log_file_name_convert参数:

    SYS(125_9)@owner> shutdown immediate;

    SYS(125_9)@owner> startup mount;

    SYS(125_9)@owner> ALTER DATABASE ADD LOGFILE GROUP 4 ('+DATA/redo01.log') SIZE 52428800;

    SYS(125_9)@owner> ALTER DATABASE ADD LOGFILE GROUP 5 ('+DATA/redo02.log') SIZE 52428800;

    SYS(125_9)@owner> ALTER DATABASE ADD LOGFILE GROUP 6 ('+DATA/redo03.log') SIZE 52428800;

    SYS(125_9)@owner> alter system set log_file_name_convert='/home/oracle/app/oradata/orcl','+data' scope=spfile;

    SYS(125_9)@owner> shutdown immediate;

    SYS(125_9)@owner> startup mount;

    SYS(125_9)@owner> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION;

     

    按照上面方法搭建的dataguard,应用日志 open read only后,alert中出现如下内容

     

    Error 12154 received logging on to the standby

    FAL[client, MRP0]: Error 12154 connecting to host for fetching gap sequence

     

     

    原因分析

    这是由于备库没有设置 fal_client参数原因造成

     

    解决方法

    设置备库的fal_client参数,例如本示例中主库db_unique_name    orcl  备库 db_unique_name orabak

    那么将备库的fal_client设置为orabak即可

    Alter system set fal_client='orabak' scope=both;

     

     

    主备库可用以下SQL检测log sequence是否一致:

    SYS(125_15)@owner> select name,replace(database_role,' ','') as database_role,thread,seq from  v$database,(select max(sequence#) seq,THREAD# thread  from v$log_history  group by THREAD#);

     

    NAME      DATABASE_ROLE        THREAD        SEQ

    --------- ---------------- ---------- ----------

    FPYJ      PHYSICALSTANDBY           1        100

    1. 1.       验证dataguard

    验证日志是否从主库传输过来,最后一个栏位为yes表示日志已经传输过来

    SYS(14_17)@ownerbak> set linesize 1000

    SYS(14_17)@ownerbak> set pagesize 1000

    SYS(14_17)@ownerbak> col archived for a10

    SYS(14_17)@ownerbak> col status for 10

    SYS(125_9)@ownerbak> select resetlogs_id,thread#,sequence#,status,archived,applied from v$archived_log;

    RESETLOGS_ID    THREAD#  SEQUENCE# S ARC APPLIED

    ------------ ---------- ---------- - --- ---------

       927291116          1        109 A YES YES

       927291116          1        110 A YES YES

       927291116          1        111 A YES YES

       927291116          1        112 A YES YES

       927291116          1        113 A YES YES

       927291116          1        114 A YES YES

       927291116          1        115 A YES YES

       927291116          1        116 A YES YES

       927291116          1        117 A YES YES

       927291116          1        118 A YES IN-MEMORY

    如果日志传输失败,请用以下命令查看主备库日志传输路径是否valid的

    set linesize 160

    col dest_name for a20

    col error for a50

    SYS(14_17)@owner> SELECT RESETLOGS_ID,THREAD#,SEQUENCE#,STATUS,ARCHIVED,APPLIED FROM V$ARCHIVED_LOG;

    RESETLOGS_ID    THREAD#  SEQUENCE# STATUS     ARCHIVED   APPLIED

    ------------ ---------- ---------- ---------- ---------- ---------

       927291116          1         50 A          YES        YES

    如果status为其他,则查看是什么原因导致无法归档到备库,调整完后用以下命令重启远程归档进程

    alter system set log_archive_dest_state_2 = 'defer';

    alter system set log_archive_dest_state_2 = 'enable';

    备库查看lag 延时,正常所有lag应该接近0或者为0

    SYS(14_17)@owner> col name for a30

    SYS(14_17)@owner> col value for a30

    SYS(14_17)@owner> col datum_time for a30

    SYS(14_17)@owner> col TIME_COMPUTED for a20

    SYS(14_17)@owner> set line 160

    SYS(14_17)@owner> select name, value, datum_time, time_computed from v$dataguard_stats;

    NAME                           VALUE                          DATUM_TIME                     TIME_COMPUTED

    ------------------------------ ------------------------------ ------------------------------ --------------------

    transport lag                                                                                                                    08/24/2017 13:58:32

    apply lag                                                                                                                        08/24/2017 13:58:32

    apply finish time                                                                                                                08/24/2017 13:58:32

    estimated startup time           10                                                                                              08/24/2017 13:58:32 

    查看DataGuard message

    SYS(14_17)@ownerbak> set linesize 1000

    SYS(14_17)@ownerbak> set pagesize 1000

    SYS(14_17)@ownerbak> col time1 for a15

    SYS(14_17)@ownerbak> select to_char(timestamp,'yyyy-mm-dd hh24:mi:ss') time1,message from v$dataguard_status order by time1 asc;

    TIME1               MESSAGE

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------2017-08-24 13:30:42 ARC0: Archival started

    2017-08-24 13:30:42 ARC1: Archival started

    2017-08-24 13:30:42 ARC2: Archival started

    2017-08-24 13:30:42 ARC1: Becoming the 'no FAL' ARCH

    2017-08-24 13:30:42 ARC2: Becoming the heartbeat ARCH

    2017-08-24 13:30:43 ARC3: Archival started

    2017-08-24 13:32:22 Managed Standby Recovery not using Real Time Apply

    2017-08-24 13:32:22 Media Recovery Complete

    2017-08-24 13:37:12 Attempt to start background Managed Standby Recovery process

    2017-08-24 13:37:12 MRP0: Background Managed Standby Recovery process started

    2017-08-24 13:37:17 Managed Standby Recovery starting Real Time Apply

    2017-08-24 13:37:17 Media Recovery Waiting for thread 1 sequence 51

    查看日志应用状态

    SYS(14_17)@ownerbak> select thread#,sequence#,applied from v$archived_log;

       THREAD#  SEQUENCE# APPLIED

    ---------- ---------- ---------

             1         50 YES

  • 相关阅读:
    为什么选择 Yeoman 及 Yeoman 的安装
    NPOI高效匯出Excel
    CentOS7 MongoDB安裝
    打印函数调用堆栈
    libevent源码分析:eventop
    libevent源码分析:time-test例子
    libevent源码分析:event_assign、event_new
    libevent源码分析:bufferevent
    lievent源码分析:evbuffer
    epoll实现压测工具
  • 原文地址:https://www.cnblogs.com/iyoume2008/p/7449033.html
Copyright © 2020-2023  润新知