暂无图片
暂无图片
3
暂无图片
暂无图片
暂无图片

RAC 备份集恢复为单实例数据库_法二:rman duplicate

原创 董小姐 2024-04-01
296

采用duplicate更省心,一步到位

一.迁移背景

由于源库RAC共享存储服役时长10年之久,磁盘空间仅剩余约50G,不能进行空间扩容,为保障业务正常运行,准备迁移至新的单点服务器上。

二.迁移环境

源库:RAC 11.2.0.4

目标库:单点11.2.0.4

可以停业务,停业务时间:72小时

三.迁移前准备

3.1.业务准备

1、客户方:下发公告通知停业务时间、时长。

2、系统应用方:统计业务服务器,进行业务服务停止。

3.2.源库

3.2.1.停止业务

3.2.1.1.开启防火墙(所有节点)

--2个节点都开启防火墙
systemctl start firewalld
systemctl enable firewalld

3.2.1.2.停止监听

规避有新的应用连接进入数据库,进而生成新的数据。

操作之前确认源端关闭监听,断开所有连接,确保操作期间没有脏数据产生

停止监听已经连接的不会断,只会让新连接的会话进不来

--查看集群中监听部分状态
......
[root@orcl01:/root]$ crsctl stat res -t
ora.LISTENER.lsnr
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
......
               
--停止监听
srvctl stop listener  --2个节点的监听都会停止

--查看集群中监听部分状态
[root@orcl01:/root]$ crsctl stat res -t
--------------------------------------------------------------------------------
NAME           TARGET  STATE        SERVER                   STATE_DETAILS
......
ora.LISTENER.lsnr
               OFFLINE OFFLINE      orcl01
               OFFLINE OFFLINE      orcl02
......              

3.2.1.3.业务会话确定终止

尽量根据计算机名和应用系统保障方确认,进行服务停止,能应用停止就不kill会话。

查询正在执行的SQL
ELECT b.sid oracleID,
b.username 登录Oracle用户名,
b.serial#,
spid 操作系统ID,
paddr,
sql_text 正在执行的SQL,
b.machine 计算机名
FROM   v$session b
left join  v$process a on a.addr = b.paddr
left join  v$sqlarea c on b.sql_hash_value = c.hash_value
WHERE  b.type != 'BACKGROUND';

或
SELECT b.sid oracleID,
b.username 登录Oracle用户名,
b.serial#,
a.spid 操作系统ID,
b.paddr,
c.sql_text 正在执行的SQL,
b.machine 计算机名
FROM   v$session b
left join  v$process a on a.addr = b.paddr
left join  v$sqlarea c on b.sql_hash_value = c.hash_value
WHERE  b.type != 'BACKGROUND' ;

--杀会话
alter system kill session 'sid,serial#' immediate; (根据v$session中查出sid和serial#进行替换)


3.2.2.查看 rac 环境及创建测试表

如果是生产或开发环境,创建测试表步骤忽略。本文档是虚拟机模拟的实验环境。

确认源端字符集,rman异机恢复要求数据库名要一致,实例名和数据库名保持一致。

3.2.2.1./etc/hosts文件

[root@orcl01:/root]$ cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

## OracleBegin

## RAC1 IP's: orcl01

## RAC1 Public IP
192.168.40.200 orcl01
## RAC1 Virtual IP
192.168.40.202 orcl01-vip
## RAC1 Private IP
192.168.183.200 orcl01-priv

## RAC2 IP's: orcl02

## RAC2 Public IP
192.168.40.201 orcl02
## RAC2 Virtual IP
192.168.40.203 orcl02-vip
## RAC2 Private IP
192.168.183.201 orcl02-priv

## SCAN IP
192.168.40.205 orcl-scan

3.2.2.2.查看网卡信息

[root@orcl01:/root]$ ifconfig
ens32: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.40.200  netmask 255.255.255.0  broadcast 192.168.40.255
        inet6 fe80::5e77:2d6d:d660:338d  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:0f:47:8a  txqueuelen 1000  (Ethernet)
        RX packets 746  bytes 127037 (124.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 487  bytes 72736 (71.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

ens32:1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.40.202  netmask 255.255.255.0  broadcast 192.168.40.255
        ether 00:0c:29:0f:47:8a  txqueuelen 1000  (Ethernet)

ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.183.200  netmask 255.255.255.0  broadcast 192.168.183.255
        inet6 fe80::fae9:3ecc:8092:5009  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:0f:47:94  txqueuelen 1000  (Ethernet)
        RX packets 140231  bytes 91681573 (87.4 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 102424  bytes 36486903 (34.7 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

ens33:1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 169.254.242.113  netmask 255.255.0.0  broadcast 169.254.255.255
        ether 00:0c:29:0f:47:94  txqueuelen 1000  (Ethernet)

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 36351  bytes 11187725 (10.6 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 36351  bytes 11187725 (10.6 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

3.2.2.3.查看RAC集群运行状态

[root@orcl01:/root]$ crsctl stat res -t
--------------------------------------------------------------------------------
NAME           TARGET  STATE        SERVER                   STATE_DETAILS
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.ARCH.dg
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
ora.DATA.dg
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
ora.LISTENER.lsnr
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
ora.OCR.dg
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
ora.asm
               ONLINE  ONLINE       orcl01                   Started
               ONLINE  ONLINE       orcl02                   Started
ora.gsd
               OFFLINE OFFLINE      orcl01
               OFFLINE OFFLINE      orcl02
ora.net1.network
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
ora.ons
               ONLINE  ONLINE       orcl01
               ONLINE  ONLINE       orcl02
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       orcl02
ora.cvu
      1        ONLINE  ONLINE       orcl02
ora.oc4j
      1        ONLINE  ONLINE       orcl01
ora.orcl.db
      1        ONLINE  ONLINE       orcl01                   Open
      2        ONLINE  ONLINE       orcl02                   Open
ora.orcl01.vip
      1        ONLINE  ONLINE       orcl01
ora.orcl02.vip
      1        ONLINE  ONLINE       orcl02
ora.scan1.vip
      1        ONLINE  ONLINE       orcl02

3.2.2.4.查数据库版本

[oracle@orcl01]$ sqlplus -V

SQL*Plus: Release 11.2.0.4.0 Production

3.2.2.5.查看集群参数

注意db_name db_unique_name instance_name service_names的区别和不同之处。

rman异机恢复要求数据库名要一致,实例名和数据库名保持一致

--查看数据库是否为Real Application Clusters (RAC)    
SQL> show parameter cluster

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
cluster_database		     boolean	 TRUE    #true:数据库是RAC
cluster_database_instances	     integer	 2   #集群有2个实例
cluster_interconnects		     string

--查看节点1信息 
SQL> show parameter name

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
cell_offloadgroup_name		     string
db_file_name_convert		     string
db_name 			     string	 orcl
db_unique_name			     string	 orcl
global_names			     boolean	 FALSE
instance_name			     string	 orcl1               #实例名字
lock_name_space 		     string
log_file_name_convert		     string
processor_group_name		     string
service_names			     string	 orcl

--查看字符集
set linesize 999
col value for a60
select * from nls_database_parameters where PARAMETER in ('NLS_CHARACTERSET','NLS_NCHAR_CHARACTERSET');
PARAMETER		       VALUE
------------------------------ ----------------------------------------------------------------------------
NLS_CHARACTERSET	       AL32UTF8
NLS_NCHAR_CHARACTERSET	   UTF8

select userenv('language') from dual;

3.2.2.6.查看归档模式是否开启

--查看归档模式是否开启 
SQL> archive log list;
Database log mode	       Archive Mode
Automatic archival	       Enabled  #已开启
Archive destination	       +ARCH   #归档文件存放位置+ARCH
Oldest online log sequence     35
Next log sequence to archive   36
Current log sequence	       36

3.2.2.7.创建测试数据(可选)

-- 查看表空间及数据文件位置及大小
set lin 1000 pagesize 999
col file_name for a55
select tablespace_name,file_name,bytes/1024/1024/1024 gb,AUTOEXTENSIBLE from dba_data_files order by tablespace_name;
TABLESPACE_NAME 	       FILE_NAME						       GB AUT
------------------------------ ------------------------------------------------------- ---------- ---
GG_DATA 		       +DATA/orcl/datafile/gg_data.269.1157015867	       .009765625 YES
SYSAUX			       +DATA/orcl/datafile/sysaux.257.1145176977	       .556640625 YES
SYSTEM			       +DATA/orcl/datafile/system.256.1145176977		 .7421875 YES
TEST_TBS		       +DATA/orcl/datafile/test_tbs.271.1157115519	       .000976563 YES
UNDOTBS1		       +DATA/orcl/datafile/undotbs1.258.1145176979	       .073242188 YES
UNDOTBS2		       +DATA/orcl/datafile/undotbs2.264.1145177133	       .048828125 YES
USERS			       +DATA/orcl/datafile/users.259.1145176979 	       .004882813 YES


--创建表空间,大小5G,开启自动扩展
create tablespace ENTSERVICE datafile '+DATA' size 1M autoextend on NEXT 1M MAXSIZE UNLIMITED LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
-- 根据需要添加一定数量的数据文件(可选)
alter tablespace ENTSERVICE add datafile '+DATA' size 1M autoextend on NEXT 1M MAXSIZE UNLIMITED;

--查看临时表空间及临时表空间数据文件位置及大小
set lin 1000 
col FILE_NAME for a60
select TABLESPACE_NAME,FILE_NAME,BYTES/1024/1024/1024 total_gb,USER_BYTES/1021/1024/1024 gb from dba_temp_files;

TABLESPACE_NAME 	       FILE_NAME						      TOTAL_GB	       GB
------------------------------ ------------------------------------------------------------ ---------- ----------
TEMP			       +DATA/orcl/tempfile/temp.263.1145177065			    .032226563 .031341822
GG_TEMP 		       +DATA/orcl/tempfile/gg_temp.270.1157015869		    .004882813 .003917728

--创建临时表空间
CREATE TEMPORARY TABLESPACE ENTSERVICETEMP TEMPFILE '+DATA'
SIZE 50M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL UNIFORM SIZE 4M;


--创建用户
create user ENTSERVICE identified by entservice1234 default tablespace ENTSERVICE TEMPORARY TABLESPACE ENTSERVICETEMP ACCOUNT UNLOCK;
--赋予权限
grant dba,connect,resource to ENTSERVICE with admin option;

注意:密码最长30位

--创建表
 CREATE TABLE ENTSERVICE.CUST
   (	
  CUST_ID NUMBER,
	LAST_NAME  VARCHAR2(30),
	FIRST_NAME VARCHAR2(30)
   ) ;

--生成测试数据
DECLARE
  v_cust_id     NUMBER;
  v_last_name   VARCHAR2(30);
  v_first_name  VARCHAR(30);
BEGIN
  FOR i IN 1..1000 LOOP
    v_cust_id := i;
    v_last_name := 'Last' || TO_CHAR(i, 'FM000');
    v_first_name := 'First' || TO_CHAR(i, 'FM000');
    INSERT into ENTSERVICE.cust (cust_id, last_name, first_name)
    VALUES (v_cust_id, v_last_name, v_first_name);
  END LOOP;
  COMMIT;
END;
/

--查询数据
select count(*) from  ENTSERVICE.CUST;

  COUNT(*)
----------
      1000

--执行检查点
SQL> alter system checkpoint;

3.2.2.8.查询所有数据库文件

--查询所有数据库文件
set line 9999 pagesize 9999
col FILE_NAME format a60
select 'datafile' file_type, file#,name FILE_NAME,status,enabled from v$datafile
union all
select 'tempfile',file#,name FILE_NAME,status,enabled from v$tempfile
union all
select 'logfile',group# file#,member FILE_NAME,status,'' from v$logfile
union all
select 'controlfile', to_number('') ,name FILE_NAME,status,'' from v$controlfile;

FILE_TYPE	 FILE# FILE_NAME						    STATUS  ENABLED
----------- ---------- ------------------------------------------------------------ ------- ----------
datafile	     1 +DATA/orcl/datafile/system.256.1145176977		    SYSTEM  READ WRITE
datafile	     2 +DATA/orcl/datafile/sysaux.257.1145176977		    ONLINE  READ WRITE
datafile	     3 +DATA/orcl/datafile/undotbs1.258.1145176979		    ONLINE  READ WRITE
datafile	     4 +DATA/orcl/datafile/users.259.1145176979 		    ONLINE  READ WRITE
datafile	     5 +DATA/orcl/datafile/undotbs2.264.1145177133		    ONLINE  READ WRITE
datafile	     6 +DATA/orcl/datafile/gg_data.269.1157015867		    ONLINE  READ WRITE
datafile	     7 +DATA/orcl/datafile/test_tbs.271.1157115519		    ONLINE  READ WRITE
datafile	     8 +DATA/orcl/datafile/entservice.273.1165062049		    ONLINE  READ WRITE
tempfile	     1 +DATA/orcl/tempfile/temp.263.1145177065			    ONLINE  READ WRITE
tempfile	     2 +DATA/orcl/tempfile/gg_temp.270.1157015869		    ONLINE  READ WRITE
tempfile	     3 +DATA/orcl/tempfile/entservicetemp.274.1165062123	    ONLINE  READ WRITE
logfile 	     2 +DATA/orcl/onlinelog/group_2.262.1145177063
logfile 	     1 +DATA/orcl/onlinelog/group_1.261.1145177063
logfile 	     3 +DATA/orcl/onlinelog/group_3.265.1145177259
logfile 	     4 +DATA/orcl/onlinelog/group_4.266.1145177259
controlfile	       +DATA/orcl/controlfile/current.260.1145177061
controlfile	       +DATA/orcl/controlfile/control02.ctl

17 rows selected.

3.2.2.9.查业务数据

--查看数据量
select sum(bytes)/1024/1024/1024 as "size(G)" from dba_data_files;
select round(sum(bytes) / 1024 / 1024 / 1024, 2) || 'G'
  from dba_segments
 where owner not in ('MDSYS', 'OUTLN', 'CTXSYS', 'OLAPSYS', 'HR', 'SYSTEM',
        'EXFSYS', 'SCOTT', 'DBSNMP', 'ORDSYS', 'SYSMAN', 'OE', 'PM', 'SH',
        'XDB', 'ORDDATA', 'IX', 'SYS', 'WMSYS') ;

----查看用户
set lin1000 pagesize 999
select username,default_tablespace,temporary_tablespace from dba_users where username not in ('SYS','SYSTEM','HR','OUTLN','MGMT_VIEW','FLOWS_FILES','MDSYS','ORDSYS','EXFSYS','DBSNMP','WMSYS','APPQOSSYS','APEX_030200','OWBSYS_AUDIT','ORDDATA','CTXSYS','ANONYMOUS','SYSMAN','XDB','ORDPLUGINS','OWBSYS','SI_INFORMTN_SCHEMA','OLAPSYS','SCOTT','ORACLE_OCM','XS$NULL','BI','PM','MDDATA','IX','SH','DIP','OE','APEX_PUBLIC_USER','SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR');

OGG			       GG_DATA			      GG_TEMP
ENTSERVICE		       ENTSERVICE		      ENTSERVICETEMP
TEST			       TEST_TBS 		      TEMP


--每个业务用户下的总对象数量校验
SELECT D.OWNER,COUNT(1)
  FROM dba_objects d
 WHERE d.OWNER   in ('TEST','OGG','ENTSERVICE')
 AND NOT EXISTS (SELECT 1 FROM DBA_RECYCLEBIN B WHERE B.object_name=D.OBJECT_NAME AND D.OWNER=B.owner) 
 GROUP BY D.OWNER
 ORDER BY D.OWNER ;
ENTSERVICE				1
OGG				      	4
TEST				    	5


--每个业务用户下的各个对象类别的数量校验
set pagesize 999
select OWNER,OBJECT_TYPE,status,count(OBJECT_NAME) from dba_objects  where owner in ('TEST','OGG','ENTSERVICE')  group by OBJECT_TYPE,owner,status order by 1,3,2;

ENTSERVICE		    TABLE		   VALID		    1
OGG			         INDEX		   VALID		    2
OGG			         TABLE		   VALID		    2
TEST			       INDEX		   VALID		    2
TEST			       SEQUENCE 	 VALID		    1
TEST			       TABLE		   VALID		    2


--查询回收站lob对象数量(可选),lob数量不一致排查
select owner,type,count(*) from dba_recyclebin group by owner,type order by owner;

--数据量统计
----新增count_rows 函数
CREATE OR REPLACE FUNCTION count_rows (
	table_name IN varchar2, 
	owner IN varchar2 := NULL
)
RETURN number AUTHID current_user
AS
num_rows number;
	stmt varchar2(2000);
BEGIN
	IF owner IS NULL THEN
		stmt := 'select count(*) from "' || table_name || '"';
	ELSE
		stmt := 'select count(*) from "' || owner || '"."' || table_name || '"';
	END IF;
	EXECUTE IMMEDIATE stmt INTO num_rows;
	RETURN num_rows;
END;
/
---调用count_rows 函数,统计各种表的记录数
select table_name, count_rows(table_name) nrows from user_tables  where tablespace_name='ENTSERVICE'
order by nrows desc;        

3.2.3.创建备份目录

在磁盘剩余空间较大的目录下创建备份目录,避免磁盘空间耗尽备份未完成。

su - root
df  -h
mkdir -p /backup
chown -R oracle:oinstall /backup

3.2.5.生成备份文件

3.2.5.1.查看全库备份脚本内容

maxpiecesize不要大于30G,通常是20G或者30G。限制指定通道的每个备份片的最大容量,会小于上限值。

--查看全库备份脚本内容
cat /backup/rman_bak.sh 
#!/bin/bash
source /home/oracle/.bash_profile
export NLS_DATE_FORMAT='YYYYMMDD hh24:mi:ss'
rq=`date +%Y%m%d`
bakdir=/backup/${rq}
autobak=$bakdir/autobackup
if [ ! -d ${bakdir} ];
then mkdir -p ${bakdir}
fi
if [ ! -d ${autobak} ];
then mkdir -p ${autobak}
fi
cd $ORACLE_HOME/bin
./rman log $bakdir/rman${rq}.log target /  <<EOF
run { 
allocate channel c1 type disk maxpiecesize 50m; 
allocate channel c2 type disk maxpiecesize 50m;
allocate channel c3 type disk maxpiecesize 50m;
allocate channel c4 type disk maxpiecesize 50m;
backup incremental level 0 as compressed backupset section size 5m format='${autobak}/orcl_full_%U_%d_%T_%s' database;
sql 'alter system switch logfile';
backup as compressed backupset section size 5m  archivelog all  format='${autobak}/orcl_arc_%U_%d_%T_%s';
BACKUP CURRENT CONTROLFILE format '${autobak}/orcl_ctl_bk_%U_%d_%T' ;
backup spfile format='${autobak}/orcl_spfile_%U_%d_%T';
release channel c1; 
release channel c2;
release channel c3;
release channel c4; 
} 
exit; 
EOF


参数说明:

或
backup as compressed backupset archivelog all format '/u01/rman/arch_%d_%U.bak';

sysdate-1/12   :备份2小时以内的归档。  可以进行更改

%U_%d_%T_%s
%U:默认是%u_%p_%c的简写形式,利用它可以为每一个备份片段(即磁盘文件)生成一个唯一名称,这是最常用的命名方式,执行不同备份操作时,生成的规则也不同,如下所示:
 生成备份片段时,%U=%u_%p_%c;
%u:是一个由备份集编号和建立时间压缩后组成的8字符名称。利用%u可以为每个备份集生成一个唯一的名称。
%p:备份集中备份片段的编号,从1开始。
%c:备份片段的复制数(从1开始编号,最大不超过256)。
%d:Oracle数据库名称。
%T:当前时间的年月日格式(YYYYMMDD)。
%s:备份集号。

3.2.5.2.执行全库备份脚本

执行全库备份脚本 必须后台运行脚本,避免会话端口备份终止

--源库上查看空间,将备份文件存放到剩余空间较大的目录,避免备份过程中空间不足中断
df -h

--执行全库备份脚本  必须后台运行脚本,避免会话端口备份终止
[oracle@orcl01:/backup]$ nohup sh rman_bak.sh &

3.2.5.3.查看备份执行过程


cat /backup/20240331/rman20240331.log

Recovery Manager: Release 11.2.0.4.0 - Production on Sun Mar 31 12:49:26 2024

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

connected to target database: ORCL (DBID=1672957797)

RMAN> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 
using target database control file instead of recovery catalog
allocated channel: c1
channel c1: SID=59 instance=orcl1 device type=DISK

allocated channel: c2
channel c2: SID=56 instance=orcl1 device type=DISK

allocated channel: c3
channel c3: SID=58 instance=orcl1 device type=DISK

allocated channel: c4
channel c4: SID=61 instance=orcl1 device type=DISK

Starting backup at 20240331 12:49:28
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 1 through 640
channel c1: starting piece 1 at 20240331 12:49:28
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 1 through 640
channel c2: starting piece 1 at 20240331 12:49:28
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 1 through 640
channel c3: starting piece 1 at 20240331 12:49:29
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 1 through 640
channel c4: starting piece 1 at 20240331 12:49:29
channel c3: finished piece 1 at 20240331 12:49:30
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_1_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 641 through 1280
channel c3: starting piece 2 at 20240331 12:49:31
channel c4: finished piece 1 at 20240331 12:49:31
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_1_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 1281 through 1920
channel c4: starting piece 3 at 20240331 12:49:31
channel c1: finished piece 1 at 20240331 12:49:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_1_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:03
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 1921 through 2560
channel c1: starting piece 4 at 20240331 12:49:31
channel c2: finished piece 1 at 20240331 12:49:31
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_1_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:03
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 2561 through 3200
channel c2: starting piece 5 at 20240331 12:49:32
channel c3: finished piece 2 at 20240331 12:49:32
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_2_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 3201 through 3840
channel c3: starting piece 6 at 20240331 12:49:32
channel c1: finished piece 4 at 20240331 12:49:32
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_4_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 3841 through 4480
channel c1: starting piece 7 at 20240331 12:49:33
channel c4: finished piece 3 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_3_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 4481 through 5120
channel c4: starting piece 8 at 20240331 12:49:33
channel c1: finished piece 7 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_7_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 5121 through 5760
channel c1: starting piece 9 at 20240331 12:49:33
channel c2: finished piece 5 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_5_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 5761 through 6400
channel c2: starting piece 10 at 20240331 12:49:33
channel c3: finished piece 6 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_6_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 6401 through 7040
channel c3: starting piece 11 at 20240331 12:49:33
channel c1: finished piece 9 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_9_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 7041 through 7680
channel c1: starting piece 12 at 20240331 12:49:33
channel c2: finished piece 10 at 20240331 12:49:33
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_10_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 7681 through 8320
channel c2: starting piece 13 at 20240331 12:49:34
channel c4: finished piece 8 at 20240331 12:49:34
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_8_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 8321 through 8960
channel c4: starting piece 14 at 20240331 12:49:34
channel c1: finished piece 12 at 20240331 12:49:34
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_12_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 8961 through 9600
channel c1: starting piece 15 at 20240331 12:49:34
channel c3: finished piece 11 at 20240331 12:49:34
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_11_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 9601 through 10240
channel c3: starting piece 16 at 20240331 12:49:34
channel c2: finished piece 13 at 20240331 12:49:34
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_13_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 10241 through 10880
channel c2: starting piece 17 at 20240331 12:49:35
channel c4: finished piece 14 at 20240331 12:49:35
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_14_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 10881 through 11520
channel c4: starting piece 18 at 20240331 12:49:35
channel c1: finished piece 15 at 20240331 12:49:35
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_15_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 11521 through 12160
channel c1: starting piece 19 at 20240331 12:49:35
channel c3: finished piece 16 at 20240331 12:49:35
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_16_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 12161 through 12800
channel c3: starting piece 20 at 20240331 12:49:35
channel c1: finished piece 19 at 20240331 12:49:35
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_19_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 12801 through 13440
channel c1: starting piece 21 at 20240331 12:49:36
channel c2: finished piece 17 at 20240331 12:49:36
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_17_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 13441 through 14080
channel c2: starting piece 22 at 20240331 12:49:36
channel c4: finished piece 18 at 20240331 12:49:36
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_18_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 14081 through 14720
channel c4: starting piece 23 at 20240331 12:49:36
channel c1: finished piece 21 at 20240331 12:49:36
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_21_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 14721 through 15360
channel c1: starting piece 24 at 20240331 12:49:36
channel c2: finished piece 22 at 20240331 12:49:36
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_22_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 15361 through 16000
channel c2: starting piece 25 at 20240331 12:49:36
channel c3: finished piece 20 at 20240331 12:49:36
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_20_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 16001 through 16640
channel c3: starting piece 26 at 20240331 12:49:37
channel c1: finished piece 24 at 20240331 12:49:37
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_24_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 16641 through 17280
channel c1: starting piece 27 at 20240331 12:49:37
channel c2: finished piece 25 at 20240331 12:49:37
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_25_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 17281 through 17920
channel c2: starting piece 28 at 20240331 12:49:37
channel c4: finished piece 23 at 20240331 12:49:38
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_23_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 17921 through 18560
channel c4: starting piece 29 at 20240331 12:49:38
channel c1: finished piece 27 at 20240331 12:49:38
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_27_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 18561 through 19200
channel c1: starting piece 30 at 20240331 12:49:38
channel c3: finished piece 26 at 20240331 12:49:38
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_26_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 19201 through 19840
channel c3: starting piece 31 at 20240331 12:49:38
channel c2: finished piece 28 at 20240331 12:49:38
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_28_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 19841 through 20480
channel c2: starting piece 32 at 20240331 12:49:39
channel c4: finished piece 29 at 20240331 12:49:39
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_29_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 20481 through 21120
channel c4: starting piece 33 at 20240331 12:49:39
channel c1: finished piece 30 at 20240331 12:49:39
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_30_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 21121 through 21760
channel c1: starting piece 34 at 20240331 12:49:39
channel c1: finished piece 34 at 20240331 12:49:40
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_34_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 21761 through 22400
channel c1: starting piece 35 at 20240331 12:49:40
channel c2: finished piece 32 at 20240331 12:49:40
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_32_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 22401 through 23040
channel c2: starting piece 36 at 20240331 12:49:41
channel c3: finished piece 31 at 20240331 12:49:41
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_31_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:03
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 23041 through 23680
channel c3: starting piece 37 at 20240331 12:49:41
channel c4: finished piece 33 at 20240331 12:49:41
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_33_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 23681 through 24320
channel c4: starting piece 38 at 20240331 12:49:41
channel c1: finished piece 35 at 20240331 12:49:41
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_35_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 24321 through 24960
channel c1: starting piece 39 at 20240331 12:49:41
channel c2: finished piece 36 at 20240331 12:49:42
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_36_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 24961 through 25600
channel c2: starting piece 40 at 20240331 12:49:42
channel c3: finished piece 37 at 20240331 12:49:42
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_37_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 25601 through 26240
channel c3: starting piece 41 at 20240331 12:49:42
channel c4: finished piece 38 at 20240331 12:49:42
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_38_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 26241 through 26880
channel c4: starting piece 42 at 20240331 12:49:43
channel c1: finished piece 39 at 20240331 12:49:43
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_39_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 26881 through 27520
channel c1: starting piece 43 at 20240331 12:49:43
channel c2: finished piece 40 at 20240331 12:49:43
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_40_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 27521 through 28160
channel c2: starting piece 44 at 20240331 12:49:44
channel c3: finished piece 41 at 20240331 12:49:44
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_41_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 28161 through 28800
channel c3: starting piece 45 at 20240331 12:49:44
channel c1: finished piece 43 at 20240331 12:49:44
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_43_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 28801 through 29440
channel c1: starting piece 46 at 20240331 12:49:44
channel c4: finished piece 42 at 20240331 12:49:44
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_42_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 29441 through 30080
channel c4: starting piece 47 at 20240331 12:49:45
channel c2: finished piece 44 at 20240331 12:49:45
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_44_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 30081 through 30720
channel c2: starting piece 48 at 20240331 12:49:45
channel c1: finished piece 46 at 20240331 12:49:45
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_46_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 30721 through 31360
channel c1: starting piece 49 at 20240331 12:49:46
channel c3: finished piece 45 at 20240331 12:49:46
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_45_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 31361 through 32000
channel c3: starting piece 50 at 20240331 12:49:46
channel c1: finished piece 49 at 20240331 12:49:46
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_49_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 32001 through 32640
channel c1: starting piece 51 at 20240331 12:49:46
channel c2: finished piece 48 at 20240331 12:49:46
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_48_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 32641 through 33280
channel c2: starting piece 52 at 20240331 12:49:46
channel c4: finished piece 47 at 20240331 12:49:46
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_47_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 33281 through 33920
channel c4: starting piece 53 at 20240331 12:49:47
channel c1: finished piece 51 at 20240331 12:49:47
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_51_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 33921 through 34560
channel c1: starting piece 54 at 20240331 12:49:48
channel c3: finished piece 50 at 20240331 12:49:48
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_50_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 34561 through 35200
channel c3: starting piece 55 at 20240331 12:49:48
channel c2: finished piece 52 at 20240331 12:49:48
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_52_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 35201 through 35840
channel c2: starting piece 56 at 20240331 12:49:48
channel c4: finished piece 53 at 20240331 12:49:48
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_53_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 35841 through 36480
channel c4: starting piece 57 at 20240331 12:49:49
channel c1: finished piece 54 at 20240331 12:49:49
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_54_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 36481 through 37120
channel c1: starting piece 58 at 20240331 12:49:49
channel c3: finished piece 55 at 20240331 12:49:49
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_55_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 37121 through 37760
channel c3: starting piece 59 at 20240331 12:49:50
channel c2: finished piece 56 at 20240331 12:49:50
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_56_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 37761 through 38400
channel c2: starting piece 60 at 20240331 12:49:50
channel c4: finished piece 57 at 20240331 12:49:50
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_57_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 38401 through 39040
channel c4: starting piece 61 at 20240331 12:49:50
channel c1: finished piece 58 at 20240331 12:49:51
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_58_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 39041 through 39680
channel c1: starting piece 62 at 20240331 12:49:52
channel c2: finished piece 60 at 20240331 12:49:52
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_60_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 39681 through 40320
channel c2: starting piece 63 at 20240331 12:49:52
channel c3: finished piece 59 at 20240331 12:49:52
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_59_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 40321 through 40960
channel c3: starting piece 64 at 20240331 12:49:55
channel c1: finished piece 62 at 20240331 12:49:55
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_62_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:03
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 40961 through 41600
channel c1: starting piece 65 at 20240331 12:49:56
channel c2: finished piece 63 at 20240331 12:49:56
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_63_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:04
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 41601 through 42240
channel c2: starting piece 66 at 20240331 12:49:56
channel c4: finished piece 61 at 20240331 12:49:56
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_61_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:06
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 42241 through 42880
channel c4: starting piece 67 at 20240331 12:49:57
channel c1: finished piece 65 at 20240331 12:49:57
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_65_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 42881 through 43520
channel c1: starting piece 68 at 20240331 12:49:57
channel c3: finished piece 64 at 20240331 12:49:57
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_64_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:03
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 43521 through 44160
channel c3: starting piece 69 at 20240331 12:49:58
channel c2: finished piece 66 at 20240331 12:49:58
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_66_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 44161 through 44800
channel c2: starting piece 70 at 20240331 12:49:58
channel c4: finished piece 67 at 20240331 12:49:58
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_67_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 44801 through 45440
channel c4: starting piece 71 at 20240331 12:49:59
channel c1: finished piece 68 at 20240331 12:49:59
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_68_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 45441 through 46080
channel c1: starting piece 72 at 20240331 12:49:59
channel c1: finished piece 72 at 20240331 12:50:00
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_72_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 46081 through 46720
channel c1: starting piece 73 at 20240331 12:50:00
channel c2: finished piece 70 at 20240331 12:50:00
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_70_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 46721 through 47360
channel c2: starting piece 74 at 20240331 12:50:01
channel c3: finished piece 69 at 20240331 12:50:01
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_69_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:03
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 47361 through 48000
channel c3: starting piece 75 at 20240331 12:50:01
channel c4: finished piece 71 at 20240331 12:50:01
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_71_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 48001 through 48640
channel c4: starting piece 76 at 20240331 12:50:01
channel c1: finished piece 73 at 20240331 12:50:01
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_73_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 48641 through 49280
channel c1: starting piece 77 at 20240331 12:50:02
channel c2: finished piece 74 at 20240331 12:50:02
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_74_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 49281 through 49920
channel c2: starting piece 78 at 20240331 12:50:02
channel c1: finished piece 77 at 20240331 12:50:03
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_77_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 49921 through 50560
channel c1: starting piece 79 at 20240331 12:50:03
channel c2: finished piece 78 at 20240331 12:50:03
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_78_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 50561 through 51200
channel c2: starting piece 80 at 20240331 12:50:03
channel c3: finished piece 75 at 20240331 12:50:03
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_75_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 51201 through 51840
channel c3: starting piece 81 at 20240331 12:50:04
channel c4: finished piece 76 at 20240331 12:50:04
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_76_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:03
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 51841 through 52480
channel c4: starting piece 82 at 20240331 12:50:04
channel c1: finished piece 79 at 20240331 12:50:04
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_79_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 52481 through 53120
channel c1: starting piece 83 at 20240331 12:50:05
channel c2: finished piece 80 at 20240331 12:50:05
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_80_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 53121 through 53760
channel c2: starting piece 84 at 20240331 12:50:05
channel c1: finished piece 83 at 20240331 12:50:06
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_83_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 53761 through 54400
channel c1: starting piece 85 at 20240331 12:50:06
channel c2: finished piece 84 at 20240331 12:50:06
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_84_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 54401 through 55040
channel c2: starting piece 86 at 20240331 12:50:06
channel c3: finished piece 81 at 20240331 12:50:06
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_81_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 55041 through 55680
channel c3: starting piece 87 at 20240331 12:50:07
channel c4: finished piece 82 at 20240331 12:50:07
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_82_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:03
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 55681 through 56320
channel c4: starting piece 88 at 20240331 12:50:07
channel c1: finished piece 85 at 20240331 12:50:07
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_85_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 56321 through 56960
channel c1: starting piece 89 at 20240331 12:50:07
channel c2: finished piece 86 at 20240331 12:50:07
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_86_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 56961 through 57600
channel c2: starting piece 90 at 20240331 12:50:08
channel c3: finished piece 87 at 20240331 12:50:08
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_87_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 57601 through 58240
channel c3: starting piece 91 at 20240331 12:50:08
channel c4: finished piece 88 at 20240331 12:50:08
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_88_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 58241 through 58880
channel c4: starting piece 92 at 20240331 12:50:08
channel c1: finished piece 89 at 20240331 12:50:08
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_89_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 58881 through 59520
channel c1: starting piece 93 at 20240331 12:50:09
channel c2: finished piece 90 at 20240331 12:50:09
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_90_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 59521 through 60160
channel c2: starting piece 94 at 20240331 12:50:09
channel c3: finished piece 91 at 20240331 12:50:09
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_91_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 60161 through 60800
channel c3: starting piece 95 at 20240331 12:50:09
channel c1: finished piece 93 at 20240331 12:50:10
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_93_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 60801 through 61440
channel c1: starting piece 96 at 20240331 12:50:10
channel c2: finished piece 94 at 20240331 12:50:10
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_94_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 61441 through 62080
channel c2: starting piece 97 at 20240331 12:50:10
channel c3: finished piece 95 at 20240331 12:50:10
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_95_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 62081 through 62720
channel c3: starting piece 98 at 20240331 12:50:11
channel c4: finished piece 92 at 20240331 12:50:11
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_92_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:03
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 62721 through 63360
channel c4: starting piece 99 at 20240331 12:50:11
channel c1: finished piece 96 at 20240331 12:50:12
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_96_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 63361 through 64000
channel c1: starting piece 100 at 20240331 12:50:12
channel c2: finished piece 97 at 20240331 12:50:12
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_97_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 64001 through 64640
channel c2: starting piece 101 at 20240331 12:50:12
channel c3: finished piece 98 at 20240331 12:50:13
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_98_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 64641 through 65280
channel c3: starting piece 102 at 20240331 12:50:13
channel c4: finished piece 99 at 20240331 12:50:13
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_99_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 65281 through 65920
channel c4: starting piece 103 at 20240331 12:50:13
channel c1: finished piece 100 at 20240331 12:50:13
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_100_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 65921 through 66560
channel c1: starting piece 104 at 20240331 12:50:14
channel c2: finished piece 101 at 20240331 12:50:14
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_101_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 66561 through 67200
channel c2: starting piece 105 at 20240331 12:50:14
channel c3: finished piece 102 at 20240331 12:50:14
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_102_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 67201 through 67840
channel c3: starting piece 106 at 20240331 12:50:14
channel c4: finished piece 103 at 20240331 12:50:14
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_103_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 67841 through 68480
channel c4: starting piece 107 at 20240331 12:50:15
channel c1: finished piece 104 at 20240331 12:50:15
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_104_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 68481 through 69120
channel c1: starting piece 108 at 20240331 12:50:15
channel c2: finished piece 105 at 20240331 12:50:15
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_105_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 69121 through 69760
channel c2: starting piece 109 at 20240331 12:50:15
channel c3: finished piece 106 at 20240331 12:50:15
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_106_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 69761 through 70400
channel c3: starting piece 110 at 20240331 12:50:16
channel c1: finished piece 108 at 20240331 12:50:17
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_108_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 70401 through 71040
channel c1: starting piece 111 at 20240331 12:50:17
channel c2: finished piece 109 at 20240331 12:50:17
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_109_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 71041 through 71680
channel c2: starting piece 112 at 20240331 12:50:17
channel c3: finished piece 110 at 20240331 12:50:17
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_110_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 71681 through 72320
channel c3: starting piece 113 at 20240331 12:50:17
channel c4: finished piece 107 at 20240331 12:50:17
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_107_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 72321 through 72960
channel c4: starting piece 114 at 20240331 12:50:18
channel c1: finished piece 111 at 20240331 12:50:19
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_111_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 72961 through 73600
channel c1: starting piece 115 at 20240331 12:50:19
channel c2: finished piece 112 at 20240331 12:50:19
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_112_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 73601 through 74240
channel c2: starting piece 116 at 20240331 12:50:19
channel c3: finished piece 113 at 20240331 12:50:19
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_113_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 74241 through 74880
channel c3: starting piece 117 at 20240331 12:50:20
channel c4: finished piece 114 at 20240331 12:50:20
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_114_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 74881 through 75520
channel c4: starting piece 118 at 20240331 12:50:20
channel c1: finished piece 115 at 20240331 12:50:21
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_115_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 75521 through 76160
channel c1: starting piece 119 at 20240331 12:50:21
channel c2: finished piece 116 at 20240331 12:50:21
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_116_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 76161 through 76800
channel c2: starting piece 120 at 20240331 12:50:21
channel c3: finished piece 117 at 20240331 12:50:21
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_117_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 76801 through 77440
channel c3: starting piece 121 at 20240331 12:50:21
channel c4: finished piece 118 at 20240331 12:50:21
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_118_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 77441 through 78080
channel c4: starting piece 122 at 20240331 12:50:22
channel c1: finished piece 119 at 20240331 12:50:23
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_119_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 78081 through 78720
channel c1: starting piece 123 at 20240331 12:50:23
channel c2: finished piece 120 at 20240331 12:50:23
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_120_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 78721 through 79360
channel c2: starting piece 124 at 20240331 12:50:23
channel c3: finished piece 121 at 20240331 12:50:23
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_121_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 79361 through 80000
channel c3: starting piece 125 at 20240331 12:50:23
channel c4: finished piece 122 at 20240331 12:50:23
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_122_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 80001 through 80640
channel c4: starting piece 126 at 20240331 12:50:24
channel c1: finished piece 123 at 20240331 12:50:24
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_123_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 80641 through 81280
channel c1: starting piece 127 at 20240331 12:50:24
channel c2: finished piece 124 at 20240331 12:50:24
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_124_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 81281 through 81920
channel c2: starting piece 128 at 20240331 12:50:24
channel c3: finished piece 125 at 20240331 12:50:24
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_125_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 81921 through 82560
channel c3: starting piece 129 at 20240331 12:50:25
channel c1: finished piece 127 at 20240331 12:50:25
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_127_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 82561 through 83200
channel c1: starting piece 130 at 20240331 12:50:25
channel c2: finished piece 128 at 20240331 12:50:25
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_128_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 83201 through 83840
channel c2: starting piece 131 at 20240331 12:50:25
channel c4: finished piece 126 at 20240331 12:50:25
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_126_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 83841 through 84480
channel c4: starting piece 132 at 20240331 12:50:26
channel c1: finished piece 130 at 20240331 12:50:26
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_130_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 84481 through 85120
channel c1: starting piece 133 at 20240331 12:50:26
channel c3: finished piece 129 at 20240331 12:50:26
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_129_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 85121 through 85760
channel c3: starting piece 134 at 20240331 12:50:26
channel c2: finished piece 131 at 20240331 12:50:26
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_131_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 85761 through 86400
channel c2: starting piece 135 at 20240331 12:50:27
channel c4: finished piece 132 at 20240331 12:50:27
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_132_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 86401 through 87040
channel c4: starting piece 136 at 20240331 12:50:27
channel c1: finished piece 133 at 20240331 12:50:27
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_133_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 87041 through 87680
channel c1: starting piece 137 at 20240331 12:50:27
channel c2: finished piece 135 at 20240331 12:50:27
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_135_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 87681 through 88320
channel c2: starting piece 138 at 20240331 12:50:27
channel c3: finished piece 134 at 20240331 12:50:27
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_134_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 88321 through 88960
channel c3: starting piece 139 at 20240331 12:50:28
channel c1: finished piece 137 at 20240331 12:50:28
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_137_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 88961 through 89600
channel c1: starting piece 140 at 20240331 12:50:28
channel c4: finished piece 136 at 20240331 12:50:28
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_136_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 89601 through 90240
channel c4: starting piece 141 at 20240331 12:50:28
channel c1: finished piece 140 at 20240331 12:50:29
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_140_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 90241 through 90880
channel c1: starting piece 142 at 20240331 12:50:29
channel c2: finished piece 138 at 20240331 12:50:29
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_138_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 90881 through 91520
channel c2: starting piece 143 at 20240331 12:50:30
channel c3: finished piece 139 at 20240331 12:50:30
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_139_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:02
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 91521 through 92160
channel c3: starting piece 144 at 20240331 12:50:30
channel c4: finished piece 141 at 20240331 12:50:30
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_141_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 92161 through 92800
channel c4: starting piece 145 at 20240331 12:50:30
channel c1: finished piece 142 at 20240331 12:50:30
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_142_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 92801 through 93440
channel c1: starting piece 146 at 20240331 12:50:30
channel c2: finished piece 143 at 20240331 12:50:30
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_143_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 93441 through 94080
channel c2: starting piece 147 at 20240331 12:50:30
channel c3: finished piece 144 at 20240331 12:50:30
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_144_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 94081 through 94720
channel c3: starting piece 148 at 20240331 12:50:31
channel c1: finished piece 146 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_146_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 94721 through 95360
channel c1: starting piece 149 at 20240331 12:50:31
channel c2: finished piece 147 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_147_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 95361 through 96000
channel c2: starting piece 150 at 20240331 12:50:31
channel c4: finished piece 145 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_145_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 96001 through 96640
channel c4: starting piece 151 at 20240331 12:50:31
channel c1: finished piece 149 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_149_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00001 name=+DATA/orcl/datafile/system.256.1145176977
backing up blocks 96641 through 97280
channel c1: starting piece 152 at 20240331 12:50:31
channel c2: finished piece 150 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_150_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 641 through 1280
channel c2: starting piece 2 at 20240331 12:50:31
channel c3: finished piece 148 at 20240331 12:50:31
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_148_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 1281 through 1920
channel c3: starting piece 3 at 20240331 12:50:32
channel c1: finished piece 152 at 20240331 12:50:32
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_152_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 1921 through 2560
channel c1: starting piece 4 at 20240331 12:50:32
channel c2: finished piece 2 at 20240331 12:50:32
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_2_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 2561 through 3200
channel c2: starting piece 5 at 20240331 12:50:32
channel c4: finished piece 151 at 20240331 12:50:32
piece handle=/backup/20240331/autobackup/orcl_full_1h2n2tio_151_1_ORCL_20240331_49 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 3201 through 3840
channel c4: starting piece 6 at 20240331 12:50:32
channel c1: finished piece 4 at 20240331 12:50:32
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_4_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 3841 through 4480
channel c1: starting piece 7 at 20240331 12:50:32
channel c2: finished piece 5 at 20240331 12:50:32
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_5_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 4481 through 5120
channel c2: starting piece 8 at 20240331 12:50:33
channel c3: finished piece 3 at 20240331 12:50:33
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_3_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 5121 through 5760
channel c3: starting piece 9 at 20240331 12:50:33
channel c1: finished piece 7 at 20240331 12:50:33
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_7_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 5761 through 6400
channel c1: starting piece 10 at 20240331 12:50:33
channel c2: finished piece 8 at 20240331 12:50:33
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_8_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 6401 through 7040
channel c2: starting piece 11 at 20240331 12:50:33
channel c4: finished piece 6 at 20240331 12:50:33
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_6_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 7041 through 7680
channel c4: starting piece 12 at 20240331 12:50:33
channel c1: finished piece 10 at 20240331 12:50:33
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_10_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 7681 through 8320
channel c1: starting piece 13 at 20240331 12:50:34
channel c2: finished piece 11 at 20240331 12:50:34
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_11_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 8321 through 8960
channel c2: starting piece 14 at 20240331 12:50:34
channel c3: finished piece 9 at 20240331 12:50:34
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_9_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 8961 through 9600
channel c3: starting piece 15 at 20240331 12:50:34
channel c1: finished piece 13 at 20240331 12:50:34
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_13_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 9601 through 10240
channel c1: starting piece 16 at 20240331 12:50:34
channel c2: finished piece 14 at 20240331 12:50:34
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_14_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 10241 through 10880
channel c2: starting piece 17 at 20240331 12:50:34
channel c4: finished piece 12 at 20240331 12:50:34
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_12_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 10881 through 11520
channel c4: starting piece 18 at 20240331 12:50:35
channel c1: finished piece 16 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_16_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 11521 through 12160
channel c1: starting piece 19 at 20240331 12:50:35
channel c2: finished piece 17 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_17_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 12161 through 12800
channel c2: starting piece 20 at 20240331 12:50:35
channel c3: finished piece 15 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_15_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 12801 through 13440
channel c3: starting piece 21 at 20240331 12:50:35
channel c1: finished piece 19 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_19_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 13441 through 14080
channel c1: starting piece 22 at 20240331 12:50:35
channel c2: finished piece 20 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_20_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 14081 through 14720
channel c2: starting piece 23 at 20240331 12:50:35
channel c4: finished piece 18 at 20240331 12:50:35
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_18_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:00
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 14721 through 15360
channel c4: starting piece 24 at 20240331 12:50:36
channel c1: finished piece 22 at 20240331 12:50:36
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_22_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 15361 through 16000
channel c1: starting piece 25 at 20240331 12:50:36
channel c2: finished piece 23 at 20240331 12:50:36
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_23_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 16001 through 16640
channel c2: starting piece 26 at 20240331 12:50:36
channel c3: finished piece 21 at 20240331 12:50:36
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_21_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 16641 through 17280
channel c3: starting piece 27 at 20240331 12:50:36
channel c1: finished piece 25 at 20240331 12:50:36
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_25_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 17281 through 17920
channel c1: starting piece 28 at 20240331 12:50:36
channel c2: finished piece 26 at 20240331 12:50:36
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_26_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 17921 through 18560
channel c2: starting piece 29 at 20240331 12:50:37
channel c4: finished piece 24 at 20240331 12:50:37
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_24_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 18561 through 19200
channel c4: starting piece 30 at 20240331 12:50:37
channel c1: finished piece 28 at 20240331 12:50:37
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_28_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 19201 through 19840
channel c1: starting piece 31 at 20240331 12:50:37
channel c2: finished piece 29 at 20240331 12:50:37
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_29_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 19841 through 20480
channel c2: starting piece 32 at 20240331 12:50:37
channel c3: finished piece 27 at 20240331 12:50:37
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_27_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 20481 through 21120
channel c3: starting piece 33 at 20240331 12:50:37
channel c1: finished piece 31 at 20240331 12:50:37
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_31_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 21121 through 21760
channel c1: starting piece 34 at 20240331 12:50:38
channel c4: finished piece 30 at 20240331 12:50:38
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_30_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 21761 through 22400
channel c4: starting piece 35 at 20240331 12:50:38
channel c2: finished piece 32 at 20240331 12:50:38
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_32_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 22401 through 23040
channel c2: starting piece 36 at 20240331 12:50:38
channel c3: finished piece 33 at 20240331 12:50:38
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_33_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 23041 through 23680
channel c3: starting piece 37 at 20240331 12:50:39
channel c1: finished piece 34 at 20240331 12:50:39
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_34_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 23681 through 24320
channel c1: starting piece 38 at 20240331 12:50:39
channel c4: finished piece 35 at 20240331 12:50:39
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_35_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 24321 through 24960
channel c4: starting piece 39 at 20240331 12:50:39
channel c1: finished piece 38 at 20240331 12:50:39
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_38_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 24961 through 25600
channel c1: starting piece 40 at 20240331 12:50:39
channel c2: finished piece 36 at 20240331 12:50:39
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_36_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 25601 through 26240
channel c2: starting piece 41 at 20240331 12:50:39
channel c3: finished piece 37 at 20240331 12:50:39
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_37_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 26241 through 26880
channel c3: starting piece 42 at 20240331 12:50:40
channel c1: finished piece 40 at 20240331 12:50:40
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_40_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 26881 through 27520
channel c1: starting piece 43 at 20240331 12:50:40
channel c2: finished piece 41 at 20240331 12:50:40
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_41_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 27521 through 28160
channel c2: starting piece 44 at 20240331 12:50:40
channel c4: finished piece 39 at 20240331 12:50:40
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_39_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 28161 through 28800
channel c4: starting piece 45 at 20240331 12:50:40
channel c1: finished piece 43 at 20240331 12:50:40
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_43_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 28801 through 29440
channel c1: starting piece 46 at 20240331 12:50:40
channel c2: finished piece 44 at 20240331 12:50:40
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_44_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 29441 through 30080
channel c2: starting piece 47 at 20240331 12:50:41
channel c3: finished piece 42 at 20240331 12:50:41
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_42_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 30081 through 30720
channel c3: starting piece 48 at 20240331 12:50:41
channel c1: finished piece 46 at 20240331 12:50:41
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_46_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 30721 through 31360
channel c1: starting piece 49 at 20240331 12:50:41
channel c4: finished piece 45 at 20240331 12:50:41
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_45_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 31361 through 32000
channel c4: starting piece 50 at 20240331 12:50:41
channel c1: finished piece 49 at 20240331 12:50:41
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_49_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 32001 through 32640
channel c1: starting piece 51 at 20240331 12:50:42
channel c2: finished piece 47 at 20240331 12:50:42
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_47_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 32641 through 33280
channel c2: starting piece 52 at 20240331 12:50:42
channel c3: finished piece 48 at 20240331 12:50:42
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_48_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 33281 through 33920
channel c3: starting piece 53 at 20240331 12:50:42
channel c1: finished piece 51 at 20240331 12:50:42
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_51_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 33921 through 34560
channel c1: starting piece 54 at 20240331 12:50:42
channel c4: finished piece 50 at 20240331 12:50:42
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_50_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 34561 through 35200
channel c4: starting piece 55 at 20240331 12:50:43
channel c1: finished piece 54 at 20240331 12:50:43
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_54_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 35201 through 35840
channel c1: starting piece 56 at 20240331 12:50:43
channel c2: finished piece 52 at 20240331 12:50:43
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_52_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 35841 through 36480
channel c2: starting piece 57 at 20240331 12:50:43
channel c3: finished piece 53 at 20240331 12:50:43
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_53_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 36481 through 37120
channel c3: starting piece 58 at 20240331 12:50:43
channel c1: finished piece 56 at 20240331 12:50:43
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_56_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 37121 through 37760
channel c1: starting piece 59 at 20240331 12:50:43
channel c2: finished piece 57 at 20240331 12:50:43
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_57_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 37761 through 38400
channel c2: starting piece 60 at 20240331 12:50:44
channel c4: finished piece 55 at 20240331 12:50:44
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_55_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 38401 through 39040
channel c4: starting piece 61 at 20240331 12:50:44
channel c1: finished piece 59 at 20240331 12:50:44
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_59_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 39041 through 39680
channel c1: starting piece 62 at 20240331 12:50:44
channel c3: finished piece 58 at 20240331 12:50:44
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_58_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 39681 through 40320
channel c3: starting piece 63 at 20240331 12:50:45
channel c2: finished piece 60 at 20240331 12:50:45
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_60_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 40321 through 40960
channel c2: starting piece 64 at 20240331 12:50:45
channel c4: finished piece 61 at 20240331 12:50:45
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_61_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 40961 through 41600
channel c4: starting piece 65 at 20240331 12:50:45
channel c1: finished piece 62 at 20240331 12:50:45
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_62_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 41601 through 42240
channel c1: starting piece 66 at 20240331 12:50:45
channel c3: finished piece 63 at 20240331 12:50:45
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_63_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 42241 through 42880
channel c3: starting piece 67 at 20240331 12:50:46
channel c1: finished piece 66 at 20240331 12:50:46
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_66_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 42881 through 43520
channel c1: starting piece 68 at 20240331 12:50:46
channel c2: finished piece 64 at 20240331 12:50:46
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_64_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 43521 through 44160
channel c2: starting piece 69 at 20240331 12:50:46
channel c4: finished piece 65 at 20240331 12:50:46
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_65_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 44161 through 44800
channel c4: starting piece 70 at 20240331 12:50:46
channel c1: finished piece 68 at 20240331 12:50:46
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_68_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 44801 through 45440
channel c1: starting piece 71 at 20240331 12:50:47
channel c3: finished piece 67 at 20240331 12:50:47
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_67_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 45441 through 46080
channel c3: starting piece 72 at 20240331 12:50:47
channel c2: finished piece 69 at 20240331 12:50:47
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_69_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 46081 through 46720
channel c2: starting piece 73 at 20240331 12:50:47
channel c4: finished piece 70 at 20240331 12:50:47
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_70_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 46721 through 47360
channel c4: starting piece 74 at 20240331 12:50:47
channel c1: finished piece 71 at 20240331 12:50:47
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_71_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 47361 through 48000
channel c1: starting piece 75 at 20240331 12:50:48
channel c3: finished piece 72 at 20240331 12:50:48
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_72_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 48001 through 48640
channel c3: starting piece 76 at 20240331 12:50:48
channel c2: finished piece 73 at 20240331 12:50:48
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_73_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 48641 through 49280
channel c2: starting piece 77 at 20240331 12:50:48
channel c1: finished piece 75 at 20240331 12:50:48
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_75_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 49281 through 49920
channel c1: starting piece 78 at 20240331 12:50:49
channel c4: finished piece 74 at 20240331 12:50:49
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_74_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:02
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 49921 through 50560
channel c4: starting piece 79 at 20240331 12:50:49
channel c2: finished piece 77 at 20240331 12:50:49
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_77_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 50561 through 51200
channel c2: starting piece 80 at 20240331 12:50:49
channel c3: finished piece 76 at 20240331 12:50:49
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_76_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 51201 through 51840
channel c3: starting piece 81 at 20240331 12:50:50
channel c1: finished piece 78 at 20240331 12:50:50
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_78_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 51841 through 52480
channel c1: starting piece 82 at 20240331 12:50:50
channel c4: finished piece 79 at 20240331 12:50:50
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_79_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 52481 through 53120
channel c4: starting piece 83 at 20240331 12:50:50
channel c2: finished piece 80 at 20240331 12:50:50
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_80_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 53121 through 53760
channel c2: starting piece 84 at 20240331 12:50:50
channel c3: finished piece 81 at 20240331 12:50:50
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_81_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 53761 through 54400
channel c3: starting piece 85 at 20240331 12:50:51
channel c1: finished piece 82 at 20240331 12:50:52
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_82_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 54401 through 55040
channel c1: starting piece 86 at 20240331 12:50:52
channel c2: finished piece 84 at 20240331 12:50:52
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_84_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 55041 through 55680
channel c2: starting piece 87 at 20240331 12:50:52
channel c3: finished piece 85 at 20240331 12:50:52
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_85_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 55681 through 56320
channel c3: starting piece 88 at 20240331 12:50:53
channel c4: finished piece 83 at 20240331 12:50:53
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_83_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:03
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 56321 through 56960
channel c4: starting piece 89 at 20240331 12:50:53
channel c1: finished piece 86 at 20240331 12:50:53
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_86_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 56961 through 57600
channel c1: starting piece 90 at 20240331 12:50:54
channel c2: finished piece 87 at 20240331 12:50:54
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_87_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:02
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 57601 through 58240
channel c2: starting piece 91 at 20240331 12:50:54
channel c1: finished piece 90 at 20240331 12:50:57
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_90_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:03
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 58241 through 58880
channel c1: starting piece 92 at 20240331 12:50:57
channel c2: finished piece 91 at 20240331 12:50:57
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_91_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:03
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 58881 through 59520
channel c2: starting piece 93 at 20240331 12:50:58
channel c3: finished piece 88 at 20240331 12:50:58
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_88_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:05
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 59521 through 60160
channel c3: starting piece 94 at 20240331 12:50:58
channel c4: finished piece 89 at 20240331 12:50:58
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_89_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:05
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 60161 through 60800
channel c4: starting piece 95 at 20240331 12:50:58
channel c1: finished piece 92 at 20240331 12:50:58
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_92_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 60801 through 61440
channel c1: starting piece 96 at 20240331 12:50:58
channel c2: finished piece 93 at 20240331 12:50:58
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_93_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 61441 through 62080
channel c2: starting piece 97 at 20240331 12:50:58
channel c3: finished piece 94 at 20240331 12:50:58
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_94_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 62081 through 62720
channel c3: starting piece 98 at 20240331 12:50:59
channel c4: finished piece 95 at 20240331 12:50:59
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_95_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 62721 through 63360
channel c4: starting piece 99 at 20240331 12:50:59
channel c1: finished piece 96 at 20240331 12:50:59
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_96_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 63361 through 64000
channel c1: starting piece 100 at 20240331 12:50:59
channel c2: finished piece 97 at 20240331 12:50:59
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_97_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 64001 through 64640
channel c2: starting piece 101 at 20240331 12:50:59
channel c3: finished piece 98 at 20240331 12:50:59
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_98_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 64641 through 65280
channel c3: starting piece 102 at 20240331 12:51:00
channel c4: finished piece 99 at 20240331 12:51:00
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_99_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 65281 through 65920
channel c4: starting piece 103 at 20240331 12:51:00
channel c1: finished piece 100 at 20240331 12:51:00
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_100_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 65921 through 66560
channel c1: starting piece 104 at 20240331 12:51:00
channel c2: finished piece 101 at 20240331 12:51:00
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_101_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 66561 through 67200
channel c2: starting piece 105 at 20240331 12:51:00
channel c3: finished piece 102 at 20240331 12:51:00
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_102_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 67201 through 67840
channel c3: starting piece 106 at 20240331 12:51:01
channel c4: finished piece 103 at 20240331 12:51:01
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_103_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 67841 through 68480
channel c4: starting piece 107 at 20240331 12:51:01
channel c1: finished piece 104 at 20240331 12:51:01
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_104_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 68481 through 69120
channel c1: starting piece 108 at 20240331 12:51:01
channel c2: finished piece 105 at 20240331 12:51:01
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_105_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 69121 through 69760
channel c2: starting piece 109 at 20240331 12:51:01
channel c3: finished piece 106 at 20240331 12:51:01
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_106_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:00
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 69761 through 70400
channel c3: starting piece 110 at 20240331 12:51:01
channel c1: finished piece 108 at 20240331 12:51:01
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_108_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 70401 through 71040
channel c1: starting piece 111 at 20240331 12:51:02
channel c2: finished piece 109 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_109_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 71041 through 71680
channel c2: starting piece 112 at 20240331 12:51:02
channel c4: finished piece 107 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_107_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 71681 through 72320
channel c4: starting piece 113 at 20240331 12:51:02
channel c1: finished piece 111 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_111_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00002 name=+DATA/orcl/datafile/sysaux.257.1145176977
backing up blocks 72321 through 72960
channel c1: starting piece 114 at 20240331 12:51:02
channel c2: finished piece 112 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_112_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 641 through 1280
channel c2: starting piece 2 at 20240331 12:51:02
channel c3: finished piece 110 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_110_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 1281 through 1920
channel c3: starting piece 3 at 20240331 12:51:02
channel c1: finished piece 114 at 20240331 12:51:02
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_114_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 1921 through 2560
channel c1: starting piece 4 at 20240331 12:51:03
channel c2: finished piece 2 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_2_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 2561 through 3200
channel c2: starting piece 5 at 20240331 12:51:03
channel c4: finished piece 113 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1i2n2tio_113_1_ORCL_20240331_50 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 3201 through 3840
channel c4: starting piece 6 at 20240331 12:51:03
channel c1: finished piece 4 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_4_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 3841 through 4480
channel c1: starting piece 7 at 20240331 12:51:03
channel c2: finished piece 5 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_5_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 4481 through 5120
channel c2: starting piece 8 at 20240331 12:51:03
channel c3: finished piece 3 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_3_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 5121 through 5760
channel c3: starting piece 9 at 20240331 12:51:03
channel c1: finished piece 7 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_7_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 5761 through 6400
channel c1: starting piece 10 at 20240331 12:51:03
channel c2: finished piece 8 at 20240331 12:51:03
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_8_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 6401 through 7040
channel c2: starting piece 11 at 20240331 12:51:04
channel c4: finished piece 6 at 20240331 12:51:04
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_6_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 7041 through 7680
channel c4: starting piece 12 at 20240331 12:51:04
channel c1: finished piece 10 at 20240331 12:51:04
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_10_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 7681 through 8320
channel c1: starting piece 13 at 20240331 12:51:04
channel c2: finished piece 11 at 20240331 12:51:04
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_11_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 8321 through 8960
channel c2: starting piece 14 at 20240331 12:51:04
channel c3: finished piece 9 at 20240331 12:51:04
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_9_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00003 name=+DATA/orcl/datafile/undotbs1.258.1145176979
backing up blocks 8961 through 9600
channel c3: starting piece 15 at 20240331 12:51:04
channel c1: finished piece 13 at 20240331 12:51:04
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_13_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 641 through 1280
channel c1: starting piece 2 at 20240331 12:51:05
channel c2: finished piece 14 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_14_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 1281 through 1920
channel c2: starting piece 3 at 20240331 12:51:05
channel c4: finished piece 12 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_12_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 1921 through 2560
channel c4: starting piece 4 at 20240331 12:51:05
channel c1: finished piece 2 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_2_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 2561 through 3200
channel c1: starting piece 5 at 20240331 12:51:05
channel c2: finished piece 3 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_3_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 3201 through 3840
channel c2: starting piece 6 at 20240331 12:51:05
channel c3: finished piece 15 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1j2n2tip_15_1_ORCL_20240331_51 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 3841 through 4480
channel c3: starting piece 7 at 20240331 12:51:05
channel c1: finished piece 5 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_5_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 4481 through 5120
channel c1: starting piece 8 at 20240331 12:51:05
channel c2: finished piece 6 at 20240331 12:51:05
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_6_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 5121 through 5760
channel c2: starting piece 9 at 20240331 12:51:06
channel c4: finished piece 4 at 20240331 12:51:06
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_4_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00005 name=+DATA/orcl/datafile/undotbs2.264.1145177133
backing up blocks 5761 through 6400
channel c4: starting piece 10 at 20240331 12:51:06
channel c1: finished piece 8 at 20240331 12:51:06
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_8_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00006 name=+DATA/orcl/datafile/gg_data.269.1157015867
backing up blocks 1 through 640
channel c1: starting piece 1 at 20240331 12:51:06
channel c2: finished piece 9 at 20240331 12:51:06
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_9_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00006 name=+DATA/orcl/datafile/gg_data.269.1157015867
backing up blocks 641 through 1280
channel c2: starting piece 2 at 20240331 12:51:06
channel c3: finished piece 7 at 20240331 12:51:06
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_7_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
channel c3: starting compressed incremental level 0 datafile backup set
channel c3: specifying datafile(s) in backup set
channel c1: finished piece 1 at 20240331 12:51:06
piece handle=/backup/20240331/autobackup/orcl_full_ak2n2tlq_1_1_ORCL_20240331_340 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
input datafile file number=00004 name=+DATA/orcl/datafile/users.259.1145176979
channel c1: starting piece 1 at 20240331 12:51:07
channel c2: finished piece 2 at 20240331 12:51:07
piece handle=/backup/20240331/autobackup/orcl_full_ak2n2tlq_2_1_ORCL_20240331_340 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:01
channel c2: starting compressed incremental level 0 datafile backup set
channel c2: specifying datafile(s) in backup set
input datafile file number=00007 name=+DATA/orcl/datafile/test_tbs.271.1157115519
channel c2: starting piece 1 at 20240331 12:51:07
channel c4: finished piece 10 at 20240331 12:51:07
piece handle=/backup/20240331/autobackup/orcl_full_1k2n2tip_10_1_ORCL_20240331_52 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:01
channel c4: starting compressed incremental level 0 datafile backup set
channel c4: specifying datafile(s) in backup set
input datafile file number=00008 name=+DATA/orcl/datafile/entservice.273.1165062049
channel c4: starting piece 1 at 20240331 12:51:07
channel c1: finished piece 1 at 20240331 12:51:07
piece handle=/backup/20240331/autobackup/orcl_full_an2n2tlr_1_1_ORCL_20240331_343 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:00
channel c1: starting compressed incremental level 0 datafile backup set
channel c1: specifying datafile(s) in backup set
including current SPFILE in backup set
channel c1: starting piece 1 at 20240331 12:51:07
channel c2: finished piece 1 at 20240331 12:51:07
piece handle=/backup/20240331/autobackup/orcl_full_ao2n2tlr_1_1_ORCL_20240331_344 tag=TAG20240331T124928 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:00
including current control file in backup set
channel c3: starting piece 1 at 20240331 12:51:07
channel c4: finished piece 1 at 20240331 12:51:07
piece handle=/backup/20240331/autobackup/orcl_full_ap2n2tlr_1_1_ORCL_20240331_345 tag=TAG20240331T124928 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:00
channel c1: finished piece 1 at 20240331 12:51:08
piece handle=/backup/20240331/autobackup/orcl_full_aq2n2tlr_1_1_ORCL_20240331_346 tag=TAG20240331T124928 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
channel c3: finished piece 1 at 20240331 12:51:08
piece handle=/backup/20240331/autobackup/orcl_full_am2n2tlq_1_1_ORCL_20240331_342 tag=TAG20240331T124928 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:01
Finished backup at 20240331 12:51:08

sql statement: alter system switch logfile

Starting backup at 20240331 12:51:09
current log archived
channel c1: starting compressed archived log backup set
channel c1: specifying archived log(s) in backup set
input archived log thread=2 sequence=13 RECID=23 STAMP=1157053462
input archived log thread=2 sequence=14 RECID=26 STAMP=1157090272
input archived log thread=1 sequence=14 RECID=24 STAMP=1157057764
input archived log thread=1 sequence=15 RECID=25 STAMP=1157090271
input archived log thread=2 sequence=15 RECID=27 STAMP=1157112021
input archived log thread=1 sequence=16 RECID=28 STAMP=1157112022
input archived log thread=1 sequence=17 RECID=29 STAMP=1157123228
input archived log thread=2 sequence=16 RECID=30 STAMP=1157123230
input archived log thread=1 sequence=18 RECID=31 STAMP=1157123240
input archived log thread=2 sequence=17 RECID=33 STAMP=1157123243
input archived log thread=1 sequence=19 RECID=32 STAMP=1157123240
input archived log thread=1 sequence=20 RECID=34 STAMP=1157123244
input archived log thread=2 sequence=18 RECID=35 STAMP=1157123245
input archived log thread=1 sequence=21 RECID=37 STAMP=1157123250
input archived log thread=2 sequence=19 RECID=36 STAMP=1157123248
input archived log thread=2 sequence=20 RECID=38 STAMP=1157123453
channel c1: starting piece 1 at 20240331 12:51:15
channel c2: starting compressed archived log backup set
channel c2: specifying archived log(s) in backup set
input archived log thread=1 sequence=22 RECID=39 STAMP=1157123454
input archived log thread=2 sequence=21 RECID=41 STAMP=1157123459
input archived log thread=1 sequence=23 RECID=40 STAMP=1157123457
input archived log thread=1 sequence=24 RECID=42 STAMP=1157123461
input archived log thread=2 sequence=22 RECID=44 STAMP=1157123465
input archived log thread=1 sequence=25 RECID=43 STAMP=1157123463
input archived log thread=1 sequence=26 RECID=45 STAMP=1157123466
input archived log thread=2 sequence=23 RECID=47 STAMP=1157124330
input archived log thread=1 sequence=27 RECID=46 STAMP=1157124328
input archived log thread=2 sequence=24 RECID=48 STAMP=1157124330
input archived log thread=1 sequence=28 RECID=49 STAMP=1159903363
input archived log thread=1 sequence=29 RECID=51 STAMP=1161187163
input archived log thread=2 sequence=25 RECID=50 STAMP=1161187163
input archived log thread=1 sequence=30 RECID=53 STAMP=1161209180
input archived log thread=2 sequence=26 RECID=52 STAMP=1161187167
input archived log thread=2 sequence=27 RECID=56 STAMP=1161209560
channel c2: starting piece 1 at 20240331 12:51:16
channel c3: starting compressed archived log backup set
channel c3: specifying archived log(s) in backup set
input archived log thread=1 sequence=31 RECID=54 STAMP=1161209557
input archived log thread=1 sequence=32 RECID=55 STAMP=1161209558
input archived log thread=2 sequence=28 RECID=57 STAMP=1161475411
input archived log thread=2 sequence=29 RECID=58 STAMP=1161475411
input archived log thread=1 sequence=33 RECID=61 STAMP=1161683873
input archived log thread=2 sequence=30 RECID=59 STAMP=1161475415
input archived log thread=2 sequence=31 RECID=60 STAMP=1161683870
input archived log thread=1 sequence=34 RECID=62 STAMP=1164547664
input archived log thread=2 sequence=32 RECID=63 STAMP=1164547668
input archived log thread=2 sequence=33 RECID=64 STAMP=1164547668
input archived log thread=1 sequence=35 RECID=65 STAMP=1164958326
input archived log thread=2 sequence=34 RECID=66 STAMP=1164960122
channel c3: starting piece 1 at 20240331 12:51:18
channel c4: starting compressed archived log backup set
channel c4: specifying archived log(s) in backup set
input archived log thread=1 sequence=36 RECID=67 STAMP=1164965883
input archived log thread=2 sequence=35 RECID=68 STAMP=1164965898
input archived log thread=2 sequence=36 RECID=69 STAMP=1164965898
input archived log thread=1 sequence=37 RECID=71 STAMP=1164966335
input archived log thread=2 sequence=37 RECID=70 STAMP=1164966335
input archived log thread=2 sequence=38 RECID=72 STAMP=1164966348
input archived log thread=1 sequence=38 RECID=73 STAMP=1164966377
input archived log thread=1 sequence=39 RECID=74 STAMP=1164966379
input archived log thread=1 sequence=40 RECID=75 STAMP=1164967048
input archived log thread=2 sequence=39 RECID=77 STAMP=1165049155
input archived log thread=1 sequence=41 RECID=76 STAMP=1164967051
input archived log thread=2 sequence=40 RECID=79 STAMP=1165051277
input archived log thread=1 sequence=42 RECID=78 STAMP=1165051277
input archived log thread=2 sequence=41 RECID=80 STAMP=1165051277
input archived log thread=1 sequence=43 RECID=81 STAMP=1165063870
input archived log thread=2 sequence=42 RECID=82 STAMP=1165063870
channel c4: starting piece 1 at 20240331 12:51:21
channel c1: finished piece 1 at 20240331 12:51:39
piece handle=/backup/20240331/autobackup/orcl_arc_ar2n2tm2_1_1_ORCL_20240331_347 tag=TAG20240331T125112 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:24
channel c1: starting compressed archived log backup set
channel c1: specifying archived log(s) in backup set
input archived log thread=1 sequence=44 RECID=83 STAMP=1165063871
channel c1: starting piece 1 at 20240331 12:51:39
channel c2: finished piece 1 at 20240331 12:51:40
piece handle=/backup/20240331/autobackup/orcl_arc_as2n2tm4_1_1_ORCL_20240331_348 tag=TAG20240331T125112 comment=NONE
channel c2: backup set complete, elapsed time: 00:00:24
channel c3: finished piece 1 at 20240331 12:51:40
piece handle=/backup/20240331/autobackup/orcl_arc_at2n2tm5_1_1_ORCL_20240331_349 tag=TAG20240331T125112 comment=NONE
channel c3: backup set complete, elapsed time: 00:00:22
channel c4: finished piece 1 at 20240331 12:51:40
piece handle=/backup/20240331/autobackup/orcl_arc_au2n2tm7_1_1_ORCL_20240331_350 tag=TAG20240331T125112 comment=NONE
channel c4: backup set complete, elapsed time: 00:00:19
channel c1: finished piece 1 at 20240331 12:51:41
piece handle=/backup/20240331/autobackup/orcl_arc_av2n2tmr_1_1_ORCL_20240331_351 tag=TAG20240331T125112 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:02
Finished backup at 20240331 12:51:41

Starting backup at 20240331 12:51:41
channel c1: starting full datafile backup set
channel c1: specifying datafile(s) in backup set
including current control file in backup set
channel c1: starting piece 1 at 20240331 12:51:43
channel c1: finished piece 1 at 20240331 12:51:44
piece handle=/backup/20240331/autobackup/orcl_ctl_bk_b02n2tmu_1_1_ORCL_20240331 tag=TAG20240331T125142 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
Finished backup at 20240331 12:51:44

Starting backup at 20240331 12:51:45
channel c1: starting full datafile backup set
channel c1: specifying datafile(s) in backup set
including current SPFILE in backup set
channel c1: starting piece 1 at 20240331 12:51:46
channel c1: finished piece 1 at 20240331 12:51:47
piece handle=/backup/20240331/autobackup/orcl_spfile_b12n2tn1_1_1_ORCL_20240331 tag=TAG20240331T125145 comment=NONE
channel c1: backup set complete, elapsed time: 00:00:01
Finished backup at 20240331 12:51:47

released channel: c1

released channel: c2

released channel: c3

released channel: c4

RMAN> 

Recovery Manager complete.

3.2.5.4.查看备份文件

[oracle@orcl01:/backup/20240331]$ cd autobackup/
[oracle@orcl01:/backup/20240331/autobackup]$ ls -lht
total 576M
-rw-r----- 1 oracle asmadmin  96K Mar 31 14:08 orcl_spfile_b12n2tn1_1_1_ORCL_20240331
-rw-r----- 1 oracle asmadmin  18M Mar 31 14:08 orcl_ctl_bk_b02n2tmu_1_1_ORCL_20240331
-rw-r----- 1 oracle asmadmin 3.5K Mar 31 14:08 orcl_arc_av2n2tmr_1_1_ORCL_20240331_351
-rw-r----- 1 oracle asmadmin 9.6M Mar 31 14:08 orcl_arc_au2n2tm7_1_1_ORCL_20240331_350
-rw-r----- 1 oracle asmadmin  34M Mar 31 14:08 orcl_arc_at2n2tm5_1_1_ORCL_20240331_349
-rw-r----- 1 oracle asmadmin  23M Mar 31 14:08 orcl_arc_as2n2tm4_1_1_ORCL_20240331_348
-rw-r----- 1 oracle asmadmin  15M Mar 31 14:08 orcl_arc_ar2n2tm2_1_1_ORCL_20240331_347
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_am2n2tlq_1_1_ORCL_20240331_342
-rw-r----- 1 oracle asmadmin  96K Mar 31 14:08 orcl_full_aq2n2tlr_1_1_ORCL_20240331_346
-rw-r----- 1 oracle asmadmin 176K Mar 31 14:08 orcl_full_ap2n2tlr_1_1_ORCL_20240331_345
-rw-r----- 1 oracle asmadmin 104K Mar 31 14:08 orcl_full_ao2n2tlr_1_1_ORCL_20240331_344
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_an2n2tlr_1_1_ORCL_20240331_343
-rw-r----- 1 oracle asmadmin  56K Mar 31 14:08 orcl_full_ak2n2tlq_2_1_ORCL_20240331_340
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_ak2n2tlq_1_1_ORCL_20240331_340
-rw-r----- 1 oracle asmadmin  56K Mar 31 14:08 orcl_full_1k2n2tip_10_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1k2n2tip_9_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1k2n2tip_8_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 552K Mar 31 14:08 orcl_full_1k2n2tip_7_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 272K Mar 31 14:08 orcl_full_1k2n2tip_6_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 152K Mar 31 14:08 orcl_full_1k2n2tip_5_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 176K Mar 31 14:08 orcl_full_1k2n2tip_4_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 112K Mar 31 14:08 orcl_full_1k2n2tip_3_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin  48K Mar 31 14:08 orcl_full_1k2n2tip_2_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin  56K Mar 31 14:08 orcl_full_1j2n2tip_15_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  48K Mar 31 14:08 orcl_full_1j2n2tip_14_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin 440K Mar 31 14:08 orcl_full_1j2n2tip_13_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1j2n2tip_12_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1j2n2tip_11_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1j2n2tip_10_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1j2n2tip_9_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1j2n2tip_8_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  96K Mar 31 14:08 orcl_full_1j2n2tip_7_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  48K Mar 31 14:08 orcl_full_1j2n2tip_6_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  88K Mar 31 14:08 orcl_full_1j2n2tip_5_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin 456K Mar 31 14:08 orcl_full_1j2n2tip_4_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin 216K Mar 31 14:08 orcl_full_1j2n2tip_3_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  88K Mar 31 14:08 orcl_full_1j2n2tip_2_1_ORCL_20240331_51
-rw-r----- 1 oracle asmadmin  56K Mar 31 14:08 orcl_full_1i2n2tio_114_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1i2n2tio_113_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1i2n2tio_112_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1i2n2tio_111_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1i2n2tio_110_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1i2n2tio_109_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_108_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_107_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_106_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_105_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_104_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_103_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_102_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_101_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_100_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_99_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_98_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_97_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_96_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_95_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_94_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_93_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_92_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:08 orcl_full_1i2n2tio_91_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 4.9M Mar 31 14:08 orcl_full_1i2n2tio_90_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 3.3M Mar 31 14:08 orcl_full_1i2n2tio_89_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 4.3M Mar 31 14:08 orcl_full_1i2n2tio_88_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.9M Mar 31 14:08 orcl_full_1i2n2tio_87_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1i2n2tio_86_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1i2n2tio_85_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1i2n2tio_84_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1i2n2tio_83_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:08 orcl_full_1i2n2tio_82_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1i2n2tio_81_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_80_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_79_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_78_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_77_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1i2n2tio_76_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1i2n2tio_75_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1i2n2tio_74_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_73_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1i2n2tio_72_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1i2n2tio_71_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1i2n2tio_70_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_69_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_68_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_67_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_66_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_65_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_64_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1i2n2tio_63_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_62_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_61_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_60_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_59_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_58_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_57_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_56_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_55_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_54_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_53_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1i2n2tio_52_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1i2n2tio_51_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_50_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_1i2n2tio_49_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_48_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1i2n2tio_47_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_46_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_45_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_44_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_43_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_42_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_41_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_40_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_39_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_38_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:08 orcl_full_1i2n2tio_37_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_36_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1i2n2tio_35_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1i2n2tio_34_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_33_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_32_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1i2n2tio_31_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1i2n2tio_30_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_29_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_28_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_27_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_26_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_25_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_24_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_23_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_22_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_1i2n2tio_21_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_1i2n2tio_20_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_19_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_18_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_17_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_16_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_15_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_1i2n2tio_14_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_13_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_12_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_11_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_10_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_9_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_8_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_7_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_6_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_5_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:08 orcl_full_1i2n2tio_4_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:08 orcl_full_1i2n2tio_3_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1i2n2tio_2_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin  56K Mar 31 14:08 orcl_full_1h2n2tio_152_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1h2n2tio_151_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin  40K Mar 31 14:08 orcl_full_1h2n2tio_150_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1h2n2tio_149_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1h2n2tio_148_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:08 orcl_full_1h2n2tio_147_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin  72K Mar 31 14:08 orcl_full_1h2n2tio_146_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1h2n2tio_145_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1h2n2tio_144_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:08 orcl_full_1h2n2tio_143_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1h2n2tio_142_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 3.2M Mar 31 14:08 orcl_full_1h2n2tio_141_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_140_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:08 orcl_full_1h2n2tio_139_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:08 orcl_full_1h2n2tio_138_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1h2n2tio_137_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1h2n2tio_136_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:08 orcl_full_1h2n2tio_135_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:08 orcl_full_1h2n2tio_134_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1h2n2tio_133_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1h2n2tio_132_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:08 orcl_full_1h2n2tio_131_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_130_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_129_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1h2n2tio_128_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1h2n2tio_127_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_126_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_125_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1h2n2tio_124_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_123_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_122_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_121_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1h2n2tio_120_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_119_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1h2n2tio_118_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_117_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1h2n2tio_116_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:08 orcl_full_1h2n2tio_115_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:08 orcl_full_1h2n2tio_114_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_113_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:08 orcl_full_1h2n2tio_112_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:08 orcl_full_1h2n2tio_111_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_110_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_109_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:08 orcl_full_1h2n2tio_108_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_107_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_106_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_105_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_104_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_103_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_102_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_101_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_100_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_99_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_98_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:08 orcl_full_1h2n2tio_97_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:08 orcl_full_1h2n2tio_96_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:08 orcl_full_1h2n2tio_94_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_95_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:08 orcl_full_1h2n2tio_93_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:08 orcl_full_1h2n2tio_92_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:08 orcl_full_1h2n2tio_91_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1h2n2tio_90_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:08 orcl_full_1h2n2tio_89_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:08 orcl_full_1h2n2tio_88_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:08 orcl_full_1h2n2tio_87_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_86_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_85_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_84_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_83_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:07 orcl_full_1h2n2tio_82_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_81_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_80_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_79_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_78_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_77_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_76_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_75_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_74_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_73_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_72_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_71_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_70_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_69_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_68_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:07 orcl_full_1h2n2tio_67_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_66_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_65_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_64_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_63_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_62_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_61_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_60_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_59_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_58_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_57_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.9M Mar 31 14:07 orcl_full_1h2n2tio_56_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_55_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:07 orcl_full_1h2n2tio_54_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_53_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_52_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:07 orcl_full_1h2n2tio_51_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:07 orcl_full_1h2n2tio_50_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1h2n2tio_49_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:07 orcl_full_1h2n2tio_48_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:07 orcl_full_1h2n2tio_47_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.8M Mar 31 14:07 orcl_full_1h2n2tio_46_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.8M Mar 31 14:07 orcl_full_1h2n2tio_45_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:07 orcl_full_1h2n2tio_44_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_43_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_42_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.6M Mar 31 14:07 orcl_full_1h2n2tio_41_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.7M Mar 31 14:07 orcl_full_1h2n2tio_40_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_39_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.5M Mar 31 14:07 orcl_full_1h2n2tio_38_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:07 orcl_full_1h2n2tio_37_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:07 orcl_full_1h2n2tio_36_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:07 orcl_full_1h2n2tio_35_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_34_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_33_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.0M Mar 31 14:07 orcl_full_1h2n2tio_32_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.4M Mar 31 14:07 orcl_full_1h2n2tio_31_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.3M Mar 31 14:07 orcl_full_1h2n2tio_30_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:07 orcl_full_1h2n2tio_29_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_28_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.1M Mar 31 14:07 orcl_full_1h2n2tio_27_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_26_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:07 orcl_full_1h2n2tio_25_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1h2n2tio_24_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1h2n2tio_23_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:07 orcl_full_1h2n2tio_22_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:07 orcl_full_1h2n2tio_21_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1h2n2tio_20_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:07 orcl_full_1h2n2tio_19_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:07 orcl_full_1h2n2tio_18_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 2.2M Mar 31 14:07 orcl_full_1h2n2tio_17_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.7M Mar 31 14:07 orcl_full_1h2n2tio_16_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.8M Mar 31 14:07 orcl_full_1h2n2tio_15_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.9M Mar 31 14:07 orcl_full_1h2n2tio_14_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:07 orcl_full_1h2n2tio_13_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.3M Mar 31 14:07 orcl_full_1h2n2tio_12_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_11_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_10_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_9_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_8_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_7_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:07 orcl_full_1h2n2tio_6_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.5M Mar 31 14:07 orcl_full_1h2n2tio_5_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1h2n2tio_4_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.4M Mar 31 14:07 orcl_full_1h2n2tio_3_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1h2n2tio_2_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.6M Mar 31 14:07 orcl_full_1h2n2tio_1_1_ORCL_20240331_49
-rw-r----- 1 oracle asmadmin 1.2M Mar 31 14:07 orcl_full_1i2n2tio_1_1_ORCL_20240331_50
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1k2n2tip_1_1_ORCL_20240331_52
-rw-r----- 1 oracle asmadmin 1.1M Mar 31 14:07 orcl_full_1j2n2tip_1_1_ORCL_20240331_51

3.2.5.5.备份密码文件

[oracle@orcl01:/home/oracle]$ cd $ORACLE_HOME/dbs
[oracle@orcl01:/u01/app/oracle/product/11.2.0/db/dbs]$ ls -l
total 20
-rw-r-----. 1 oracle asmadmin 1024 Aug 18  2023 arch2_1_1145177063.dbf
-rw-rw----. 1 oracle asmadmin 1544 Mar 31 11:45 hc_orcl1.dat
-rw-r--r--. 1 oracle oinstall 2851 May 15  2009 init.ora
-rw-r-----. 1 oracle oinstall   35 Aug 18  2023 initorcl1.ora
-rw-r-----. 1 oracle oinstall 1536 Aug 18  2023 orapworcl1
[oracle@orcl01:/u01/app/oracle/product/11.2.0/db/dbs]$ cp orapworcl1 /backup/

3.2.6.将备份传递到 target 库

可以采用 ftp 上传下载,也可以采用 NFS 网络文件系统,或者 scp 命令都可以,本文档采用 scp 直接传递 。
注意:如果源端服务器和目标服务器不在同一个网段,可以对目标库服务器再添加一块网卡,将新添加的网卡配置成同网段。或者直接找负责网络的人员实现跨网段访问。

--目标库上查看空间,将备份文件存放到剩余空间较大的目录,避免传输过程中空间不足中断
df -h

--源库上操作
su - oracle
scp -r /backup oracle@192.168.40.52:/home/oracle/ 

3.3.目标库

3.3.1.安装数据库软件

默认目标库已经安装好了同源库一样的数据库版本。

若已创建实例,需按以下步骤进行闭库,删除:

--关闭数据库
shutdown immediate

--静默删除数据库实例 
dbca -silent -deleteDatabase -sourcedb orcl -sid orcl

3.3.2.配置静态监听

3.3.2.1.备份原监听文件

--备份原监听文件
cd /u01/app/oracle/product/11.2.0.4/dbhome_1/network/admin
cp listener.ora listener.ora_bak_20240331

3.3.2.2.配置静态监听

--配置静态监听
[oracle@11g-db admin]$ vi listener.ora

# listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0.4/dbhome_1/network/admin/listener.ora
# Generated by Oracle configuration tools.

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 11g-db)(PORT = 1521))
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    )
  )

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (ORACLE_HOME = /u01/app/oracle/product/11.2.0.4/dbhome_1)
      (SID_NAME = orcl)
    )
  )

ADR_BASE_LISTENER = /u01/app/oracle

3.3.2.3.重启监听

--重启监听
lsnrctl stop
lsnrctl start

过程:
[oracle@11g-db admin]$ lsnrctl stop

LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 31-MAR-2024 19:36:04

Copyright (c) 1991, 2013, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=11g-db)(PORT=1521)))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 111: Connection refused
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 2: No such file or directory
[oracle@11g-db admin]$ lsnrctl start

LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 31-MAR-2024 19:36:25

Copyright (c) 1991, 2013, Oracle.  All rights reserved.

Starting /u01/app/oracle/product/11.2.0.4/dbhome_1/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 11.2.0.4.0 - Production
System parameter file is /u01/app/oracle/product/11.2.0.4/dbhome_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/11g-db/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=11g-db)(PORT=1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=11g-db)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.4.0 - Production
Start Date                31-MAR-2024 19:36:25
Uptime                    0 days 0 hr. 0 min. 10 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/oracle/product/11.2.0.4/dbhome_1/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/11g-db/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=11g-db)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Services Summary...
Service "orcl" has 1 instance(s).
  Instance "orcl", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully

3.3.3.查数据库版本

[oracle@11g-db oradata]$ sqlplus -V

SQL*Plus: Release 11.2.0.4.0 Production

四.迁移过程

4.1.生成密码文件

su - oracle
--复制密码文件
cd /home/oracle/backup/
cp orapworcl1 $ORACLE_HOME/dbs/

--重命名密码文件
cd $ORACLE_HOME/dbs
mv orapworcl1 orapworcl

4.2.生成spfile文件

参数文件是RAC的,要改成符合单实例数据库

4.2.1.还原备份中的spfile文件

startup nomount;后$ORACLE_HOME/dbs下生成hc_orcl.dat

restore spfile后$ORACLE_HOME/dbs下生成spfileorcl.ora

su - oracle
export ORACLE_SID=orcl
rman target /
run {
startup nomount;
restore spfile from '/home/oracle/backup/20240331/autobackup/orcl_spfile_b12n2tn1_1_1_ORCL_20240331';
}

startup failed: ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0.4/dbhome_1/dbs/initorcl.ora'

starting Oracle instance without parameter file for retrieval(检索) of spfile
Oracle instance started

Total System Global Area    1068937216 bytes

Fixed Size                     2260088 bytes
Variable Size                281019272 bytes
Database Buffers             780140544 bytes
Redo Buffers                   5517312 bytes


Starting restore at 2024-03-31 16:19:24
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=19 device type=DISK

channel ORA_DISK_1: restoring spfile from AUTOBACKUP /home/oracle/backup/20240331/autobackup/orcl_spfile_b12n2tn1_1_1_ORCL_20240331
channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
Finished restore at 2024-03-31 16:19:25

4.1.2.生成pfile文件

su - oracle
export ORACLE_SID=orcl
sqlplus / as sysdba
create pfile='/home/oracle/initorcl20240331.ora' from spfile;

查看pfile文件发现,本文档源库RAC未开启闪回恢复功能,故没有闪回恢复相关参数;使用的是ASMM内存管理。

4.13.备份并查看pfile文件内容

--备份pfile文件
[oracle@11g-db ~]$ cp initorcl20240331.ora initorcl20240331.ora_bak_20240331

--查看pfile文件内容
[oracle@11g-db ]$ more /home/oracle/initorcl20240331.ora
orcl2.__db_cache_size=549453824
orcl1.__db_cache_size=549453824
orcl2.__java_pool_size=4194304
orcl1.__java_pool_size=4194304
orcl2.__large_pool_size=8388608
orcl1.__large_pool_size=8388608
orcl1.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
orcl2.__pga_aggregate_target=209715200
orcl1.__pga_aggregate_target=209715200
orcl2.__sga_target=838860800
orcl1.__sga_target=838860800
orcl2.__shared_io_pool_size=0
orcl1.__shared_io_pool_size=0
orcl2.__shared_pool_size=268435456
orcl1.__shared_pool_size=268435456
orcl2.__streams_pool_size=0
orcl1.__streams_pool_size=0
*.audit_file_dest='/u01/app/oracle/admin/orcl/adump'
*.audit_trail='db'
*.cluster_database=true
*.compatible='11.2.0.4.0'
*.control_files='+DATA/orcl/controlfile/current.260.1145177061','+DATA/orcl/controlfile/control02.ctl'
*.db_block_size=8192
*.db_create_file_dest='+DATA'
*.db_domain=''
*.db_name='orcl'
*.diagnostic_dest='/u01/app/oracle'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'
*.enable_goldengate_replication=TRUE
orcl2.instance_number=2
orcl1.instance_number=1
*.log_archive_dest_1='location=+ARCH'
*.log_archive_format='%t_%s_%r.dbf'
*.open_cursors=300
*.pga_aggregate_target=208666624
*.processes=150
*.remote_listener='orcl-scan:1521'
*.remote_login_passwordfile='exclusive'
*.sga_target=837812224
orcl2.thread=2
orcl1.thread=1
*.undo_retention=86400
orcl2.undo_tablespace='UNDOTBS2'
orcl1.undo_tablespace='UNDOTBS1'

4.1.3.修改后pfile文件内容

修改生成 pfile 中的文件路径和文件名

在目标主机创建参数文件,将其中cluster的参数删掉,修改完之后,比原来的参数内容精简了很多,保留或修改如下参数:

[oracle@11g-db ]$ more /home/oracle/initorcl20240331.ora
*.audit_file_dest='/u01/app/oracle/admin/orcl/adump'
*.audit_trail='db'
*.compatible='11.2.0.4.0'
*.control_files='/u01/app/oracle/oradata/orcl/controlfile/control01.ctl','/u01/app/oracle/oradata/orcl/controlfile/control02.ctl'
*.db_block_size=8192
*.db_domain=''
*.db_file_name_convert='+DATA/orcl/datafile','/u01/app/oracle/oradata/orcl/datafile','+DATA/orcl/tempfile','/u01/app/oracle/oradata/orcl/tempfile'
*.db_name='orcl'
*.diagnostic_dest='/u01/app/oracle'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'
*.log_archive_dest_1='location=/u01/archive'
*.log_archive_format='%t_%s_%r.dbf'
*.log_file_name_convert='+DATA/orcl/onlinelog','/u01/app/oracle/oradata/orcl/onlinelog'
*.open_cursors=300
*.pga_aggregate_target=208666624
*.processes=150
*.remote_login_passwordfile='exclusive'
*.sga_target=837812224
*.undo_retention=86400


:%s#+DATA#/u01/app/oracle/oradata#g
:%s#+ARCH#/u01/archive#g

补充:
如果有多组路径不通的数据文件和日志文件,则按如下示例,成对增加路径即可:
*.db_file_name_convert='+DATA/primary/datafile','/u01/app/oracle/oradata/orcl/datafile','+DATA/orcl/datafile','/u01/app/oracle/oradata/orcl/datafile','+DATA/orcl/tempfile','/u01/app/oracle/oradata/orcl/tempfile'

*.log_file_name_convert='+DATA/orcl/onlinelog','/u01/app/oracle/oradata/orcl/onlinelog','+DATA/primary/onlinelog','/u01/app/oracle/oradata/orcl/onlinelog'

内存修改可参考如下公式:

--os_memory_total=$(awk '/MemTotal/{print $2}' /proc/meminfo)

--$sga_target=os_memory_total * 8 * 8 / 100 / 1024

--pga_target=os_memory_total * 8 * 2 / 100 / 1024

也可以后面恢复后open库修改sga和pga参数

4.1.2.创建相关路径

su - oracle
mkdir -p /u01/app/oracle/admin/orcl/adump
mkdir -p /u01/archive
mkdir -p /u01/app/oracle/oradata/orcl/controlfile
mkdir -p /u01/app/oracle/oradata/orcl/datafile
mkdir -p /u01/app/oracle/oradata/orcl/tempfile
mkdir -p /u01/app/oracle/oradata/orcl/onlinelog

4.1.3.生成spfile文件

--关库
su - oracle
export ORACLE_SID=orcl
sqlplus / as sysdba
shutdown immediate

--生成spfile文件
create spfile from pfile='/home/oracle/initorcl20240331.ora';
exit

--查看生成的spfile文件
[oracle@11g-db ~]$ ls -l $ORACLE_HOME/dbs
total 12
-rw-rw---- 1 oracle oinstall 1544 Mar 31 16:35 hc_orcl.dat
-rw-r----- 1 oracle oinstall 1536 Mar 31 16:09 orapworcl
-rw-r----- 1 oracle oinstall 2560 Mar 31 16:40 spfileorcl.ora

4.2.用spfile文件启动到 nomount 状态

su - oracle
export ORACLE_SID=orcl
sqlplus / as sysdba
startup nomount;

connected to target database (not started)
Oracle instance started

Total System Global Area     835104768 bytes

Fixed Size                     2257840 bytes
Variable Size                281021520 bytes
Database Buffers             549453824 bytes
Redo Buffers                   2371584 bytes

4.3.duplicate恢复

之后自动open resetlogs打开数据库完成恢复。

su - oracle
export ORACLE_SID=orcl

--duplicate恢复
rman auxiliary /
DUPLICATE DATABASE TO orcl BACKUP LOCATION '/home/oracle/backup/20240331/autobackup/' NOFILENAMECHECK;

详细过程如下:

[oracle@11g-db controlfile]$ rman auxiliary /

Recovery Manager: Release 11.2.0.4.0 - Production on Mon Apr 1 00:30:01 2024

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

connected to auxiliary database: ORCL (not mounted)

RMAN> DUPLICATE DATABASE TO orcl BACKUP LOCATION '/home/oracle/backup/20240331/autobackup/' NOFILENAMECHECK;

Starting Duplicate Db at 2024-04-01 00:30:09

contents of Memory Script:
{
   sql clone "alter system set  db_name =
 ''ORCL'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   sql clone "alter system set  db_unique_name =
 ''ORCL'' comment=
 ''Modified by RMAN duplicate'' scope=spfile";
   shutdown clone immediate;
   startup clone force nomount
   restore clone primary controlfile from  '/home/oracle/backup/20240331/autobackup/orcl_ctl_bk_b02n2tmu_1_1_ORCL_20240331';
   alter clone database mount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL'' comment= ''Modified by RMAN duplicate'' scope=spfile

sql statement: alter system set  db_unique_name =  ''ORCL'' comment= ''Modified by RMAN duplicate'' scope=spfile

Oracle instance shut down

Oracle instance started

Total System Global Area     835104768 bytes

Fixed Size                     2257840 bytes
Variable Size                281021520 bytes
Database Buffers             549453824 bytes
Redo Buffers                   2371584 bytes

Starting restore at 2024-04-01 00:30:16
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=18 device type=DISK

channel ORA_AUX_DISK_1: restoring control file
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/u01/app/oracle/oradata/orcl/controlfile/control01.ctl
output file name=/u01/app/oracle/oradata/orcl/controlfile/control02.ctl
Finished restore at 2024-04-01 00:30:17

database mounted
released channel: ORA_AUX_DISK_1
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=18 device type=DISK

contents of Memory Script:
{
   set until scn  1697613;
   set newname for datafile  1 to
 "/u01/app/oracle/oradata/orcl/datafile/system.256.1145176977";
   set newname for datafile  2 to
 "/u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977";
   set newname for datafile  3 to
 "/u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979";
   set newname for datafile  4 to
 "/u01/app/oracle/oradata/orcl/datafile/users.259.1145176979";
   set newname for datafile  5 to
 "/u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133";
   set newname for datafile  6 to
 "/u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867";
   set newname for datafile  7 to
 "/u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519";
   set newname for datafile  8 to
 "/u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049";
   restore
   clone database
   ;
}
executing Memory Script

executing command: SET until clause

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

Starting restore at 2024-04-01 00:30:23
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 1 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_1_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_1_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 2 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_2_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_2_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 2
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 3 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_3_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_3_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 3
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 4 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_4_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_4_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 4
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 5 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_5_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_5_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 5
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 6 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_6_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_6_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 6
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 7 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_7_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_7_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 7
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 8 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_8_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_8_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 8
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 9 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_9_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_9_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 9
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 10 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_10_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_10_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 10
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 11 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_11_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_11_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 11
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 12 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_12_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_12_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 12
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 13 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_13_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_13_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 13
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 14 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_14_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_14_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 14
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 15 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_15_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_15_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 15
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 16 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_16_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_16_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 16
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 17 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_17_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_17_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 17
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 18 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_18_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_18_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 18
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 19 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_19_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_19_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 19
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 20 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_20_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_20_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 20
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 21 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_21_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_21_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 21
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 22 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_22_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_22_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 22
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 23 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_23_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_23_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 23
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 24 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_24_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_24_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 24
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 25 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_25_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_25_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 25
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 26 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_26_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_26_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 26
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 27 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_27_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_27_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 27
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 28 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_28_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_28_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 28
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 29 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_29_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_29_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 29
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 30 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_30_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_30_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 30
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 31 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_31_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_31_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 31
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 32 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_32_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_32_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 32
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 33 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_33_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_33_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 33
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 34 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_34_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_34_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 34
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 35 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_35_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_35_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 35
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 36 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_36_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_36_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 36
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 37 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_37_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_37_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 37
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 38 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_38_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_38_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 38
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 39 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_39_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_39_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 39
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 40 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_40_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_40_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 40
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 41 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_41_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_41_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 41
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 42 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_42_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_42_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 42
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 43 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_43_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_43_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 43
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 44 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_44_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_44_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 44
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 45 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_45_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_45_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 45
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 46 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_46_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_46_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 46
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 47 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_47_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_47_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 47
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 48 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_48_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_48_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 48
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 49 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_49_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_49_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 49
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 50 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_50_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_50_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 50
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 51 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_51_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_51_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 51
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 52 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_52_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_52_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 52
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 53 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_53_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_53_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 53
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 54 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_54_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_54_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 54
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 55 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_55_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_55_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 55
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 56 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_56_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_56_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 56
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 57 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_57_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_57_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 57
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 58 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_58_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_58_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 58
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 59 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_59_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_59_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 59
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 60 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_60_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_60_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 60
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 61 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_61_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_61_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 61
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 62 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_62_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_62_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 62
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 63 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_63_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_63_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 63
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 64 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_64_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_64_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 64
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 65 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_65_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_65_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 65
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 66 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_66_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_66_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 66
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 67 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_67_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_67_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 67
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 68 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_68_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_68_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 68
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 69 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_69_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_69_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 69
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 70 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_70_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_70_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 70
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 71 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_71_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_71_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 71
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 72 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_72_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_72_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 72
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 73 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_73_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_73_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 73
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 74 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_74_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_74_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 74
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 75 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_75_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_75_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 75
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 76 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_76_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_76_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 76
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 77 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_77_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_77_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 77
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 78 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_78_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_78_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 78
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 79 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_79_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_79_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 79
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 80 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_80_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_80_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 80
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 81 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_81_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_81_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 81
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 82 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_82_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_82_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 82
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 83 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_83_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_83_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 83
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 84 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_84_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_84_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 84
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 85 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_85_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_85_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 85
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 86 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_86_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_86_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 86
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 87 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_87_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_87_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 87
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 88 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_88_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_88_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 88
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 89 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_89_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_89_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 89
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 90 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_90_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_90_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 90
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 91 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_91_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_91_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 91
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 92 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_92_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_92_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 92
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 93 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_93_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_93_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 93
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 94 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_94_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_94_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 94
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 95 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_95_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_95_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 95
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 96 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_96_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_96_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 96
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 97 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_97_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_97_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 97
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 98 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_98_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_98_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 98
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 99 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_99_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_99_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 99
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 100 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_100_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_100_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 100
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 101 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_101_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_101_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 101
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 102 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_102_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_102_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 102
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 103 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_103_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_103_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 103
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 104 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_104_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_104_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 104
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 105 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_105_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_105_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 105
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 106 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_106_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_106_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 106
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 107 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_107_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_107_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 107
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 108 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_108_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_108_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 108
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 109 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_109_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_109_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 109
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 110 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_110_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_110_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 110
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 111 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_111_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_111_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 111
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 112 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_112_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_112_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 112
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 113 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_113_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_113_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 113
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:02
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 114 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_114_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_114_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 114
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 115 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_115_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_115_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 115
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 116 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_116_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_116_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 116
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 117 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_117_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_117_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 117
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 118 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_118_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_118_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 118
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 119 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_119_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_119_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 119
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 120 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_120_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_120_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 120
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 121 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_121_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_121_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 121
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 122 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_122_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_122_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 122
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 123 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_123_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_123_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 123
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 124 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_124_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_124_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 124
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 125 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_125_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_125_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 125
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 126 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_126_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_126_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 126
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 127 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_127_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_127_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 127
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 128 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_128_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_128_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 128
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 129 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_129_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_129_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 129
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 130 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_130_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_130_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 130
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 131 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_131_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_131_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 131
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 132 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_132_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_132_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 132
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 133 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_133_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_133_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 133
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 134 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_134_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_134_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 134
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 135 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_135_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_135_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 135
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 136 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_136_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_136_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 136
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 137 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_137_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_137_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 137
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 138 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_138_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_138_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 138
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 139 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_139_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_139_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 139
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 140 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_140_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_140_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 140
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 141 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_141_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_141_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 141
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 142 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_142_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_142_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 142
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 143 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_143_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_143_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 143
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 144 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_144_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_144_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 144
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 145 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_145_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_145_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 145
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 146 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_146_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_146_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 146
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 147 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_147_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_147_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 147
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 148 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_148_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_148_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 148
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 149 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_149_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_149_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 149
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 150 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_150_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_150_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 150
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 151 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_151_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_151_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 151
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
channel ORA_AUX_DISK_1: restoring section 152 of 152
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_152_1_ORCL_20240331_49
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1h2n2tio_152_1_ORCL_20240331_49 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 152
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 1 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_1_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_1_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 2 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_2_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_2_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 2
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 3 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_3_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_3_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 3
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 4 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_4_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_4_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 4
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 5 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_5_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_5_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 5
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 6 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_6_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_6_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 6
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 7 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_7_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_7_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 7
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 8 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_8_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_8_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 8
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 9 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_9_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_9_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 9
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 10 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_10_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_10_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 10
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 11 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_11_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_11_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 11
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 12 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_12_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_12_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 12
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 13 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_13_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_13_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 13
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 14 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_14_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_14_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 14
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 15 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_15_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_15_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 15
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 16 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_16_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_16_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 16
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 17 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_17_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_17_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 17
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 18 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_18_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_18_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 18
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 19 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_19_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_19_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 19
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 20 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_20_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_20_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 20
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 21 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_21_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_21_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 21
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 22 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_22_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_22_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 22
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 23 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_23_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_23_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 23
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 24 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_24_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_24_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 24
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 25 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_25_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_25_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 25
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 26 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_26_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_26_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 26
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 27 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_27_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_27_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 27
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 28 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_28_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_28_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 28
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 29 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_29_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_29_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 29
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 30 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_30_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_30_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 30
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 31 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_31_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_31_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 31
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 32 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_32_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_32_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 32
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 33 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_33_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_33_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 33
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 34 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_34_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_34_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 34
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 35 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_35_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_35_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 35
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 36 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_36_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_36_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 36
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 37 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_37_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_37_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 37
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 38 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_38_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_38_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 38
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 39 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_39_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_39_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 39
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 40 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_40_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_40_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 40
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 41 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_41_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_41_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 41
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 42 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_42_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_42_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 42
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 43 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_43_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_43_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 43
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 44 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_44_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_44_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 44
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 45 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_45_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_45_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 45
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 46 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_46_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_46_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 46
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 47 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_47_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_47_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 47
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 48 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_48_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_48_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 48
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 49 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_49_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_49_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 49
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 50 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_50_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_50_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 50
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 51 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_51_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_51_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 51
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 52 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_52_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_52_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 52
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 53 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_53_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_53_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 53
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 54 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_54_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_54_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 54
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 55 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_55_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_55_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 55
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 56 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_56_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_56_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 56
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 57 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_57_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_57_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 57
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 58 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_58_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_58_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 58
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 59 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_59_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_59_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 59
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 60 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_60_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_60_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 60
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 61 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_61_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_61_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 61
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 62 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_62_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_62_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 62
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 63 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_63_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_63_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 63
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 64 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_64_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_64_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 64
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 65 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_65_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_65_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 65
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 66 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_66_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_66_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 66
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 67 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_67_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_67_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 67
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 68 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_68_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_68_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 68
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 69 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_69_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_69_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 69
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 70 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_70_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_70_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 70
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 71 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_71_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_71_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 71
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 72 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_72_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_72_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 72
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 73 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_73_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_73_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 73
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 74 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_74_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_74_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 74
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 75 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_75_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_75_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 75
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 76 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_76_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_76_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 76
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 77 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_77_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_77_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 77
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 78 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_78_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_78_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 78
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 79 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_79_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_79_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 79
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 80 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_80_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_80_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 80
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 81 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_81_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_81_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 81
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 82 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_82_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_82_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 82
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 83 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_83_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_83_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 83
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 84 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_84_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_84_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 84
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 85 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_85_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_85_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 85
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 86 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_86_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_86_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 86
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 87 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_87_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_87_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 87
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 88 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_88_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_88_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 88
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 89 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_89_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_89_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 89
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 90 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_90_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_90_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 90
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 91 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_91_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_91_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 91
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 92 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_92_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_92_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 92
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 93 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_93_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_93_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 93
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 94 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_94_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_94_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 94
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 95 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_95_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_95_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 95
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 96 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_96_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_96_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 96
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 97 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_97_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_97_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 97
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 98 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_98_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_98_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 98
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 99 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_99_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_99_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 99
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 100 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_100_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_100_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 100
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 101 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_101_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_101_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 101
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 102 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_102_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_102_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 102
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 103 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_103_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_103_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 103
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 104 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_104_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_104_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 104
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 105 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_105_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_105_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 105
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 106 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_106_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_106_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 106
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 107 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_107_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_107_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 107
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 108 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_108_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_108_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 108
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 109 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_109_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_109_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 109
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 110 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_110_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_110_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 110
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 111 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_111_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_111_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 111
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 112 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_112_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_112_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 112
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 113 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_113_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_113_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 113
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
channel ORA_AUX_DISK_1: restoring section 114 of 114
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_114_1_ORCL_20240331_50
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1i2n2tio_114_1_ORCL_20240331_50 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 114
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 1 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_1_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_1_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 2 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_2_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_2_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 2
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 3 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_3_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_3_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 3
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 4 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_4_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_4_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 4
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 5 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_5_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_5_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 5
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 6 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_6_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_6_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 6
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 7 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_7_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_7_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 7
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 8 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_8_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_8_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 8
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 9 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_9_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_9_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 9
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 10 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_10_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_10_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 10
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 11 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_11_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_11_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 11
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 12 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_12_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_12_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 12
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 13 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_13_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_13_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 13
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 14 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_14_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_14_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 14
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
channel ORA_AUX_DISK_1: restoring section 15 of 15
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_15_1_ORCL_20240331_51
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1j2n2tip_15_1_ORCL_20240331_51 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 15
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/orcl/datafile/users.259.1145176979
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_an2n2tlr_1_1_ORCL_20240331_343
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_an2n2tlr_1_1_ORCL_20240331_343 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 1 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_1_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_1_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 2 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_2_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_2_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 2
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 3 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_3_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_3_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 3
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 4 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_4_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_4_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 4
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 5 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_5_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_5_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 5
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 6 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_6_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_6_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 6
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 7 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_7_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_7_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 7
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 8 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_8_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_8_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 8
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 9 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_9_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_9_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 9
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
channel ORA_AUX_DISK_1: restoring section 10 of 10
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_10_1_ORCL_20240331_52
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_1k2n2tip_10_1_ORCL_20240331_52 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 10
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00006 to /u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867
channel ORA_AUX_DISK_1: restoring section 1 of 2
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_ak2n2tlq_1_1_ORCL_20240331_340
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_ak2n2tlq_1_1_ORCL_20240331_340 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00006 to /u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867
channel ORA_AUX_DISK_1: restoring section 2 of 2
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_ak2n2tlq_2_1_ORCL_20240331_340
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_ak2n2tlq_2_1_ORCL_20240331_340 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 2
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00007 to /u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_ao2n2tlr_1_1_ORCL_20240331_344
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_ao2n2tlr_1_1_ORCL_20240331_344 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00008 to /u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_full_ap2n2tlr_1_1_ORCL_20240331_345
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_full_ap2n2tlr_1_1_ORCL_20240331_345 tag=TAG20240331T124928
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 2024-04-01 00:35:30

contents of Memory Script:
{
   switch clone datafile all;
}
executing Memory Script

datafile 1 switched to datafile copy
input datafile copy RECID=14 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/system.256.1145176977
datafile 2 switched to datafile copy
input datafile copy RECID=15 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
datafile 3 switched to datafile copy
input datafile copy RECID=16 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
datafile 4 switched to datafile copy
input datafile copy RECID=17 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/users.259.1145176979
datafile 5 switched to datafile copy
input datafile copy RECID=18 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
datafile 6 switched to datafile copy
input datafile copy RECID=19 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867
datafile 7 switched to datafile copy
input datafile copy RECID=20 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519
datafile 8 switched to datafile copy
input datafile copy RECID=21 STAMP=1165106130 file name=/u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049

contents of Memory Script:
{
   set until scn  1697613;
   recover
   clone database
    delete archivelog
   ;
}
executing Memory Script

executing command: SET until clause

Starting recover at 2024-04-01 00:35:30
using channel ORA_AUX_DISK_1

starting media recovery

channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=43
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=2 sequence=42
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_arc_au2n2tm7_1_1_ORCL_20240331_350
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_arc_au2n2tm7_1_1_ORCL_20240331_350 tag=TAG20240331T125112
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:03
archived log file name=/u01/archive/1_43_1145177063.dbf thread=1 sequence=43
archived log file name=/u01/archive/2_42_1145177063.dbf thread=2 sequence=42
channel clone_default: deleting archived log(s)
archived log file name=/u01/archive/1_43_1145177063.dbf RECID=2 STAMP=1165106132
channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=44
channel ORA_AUX_DISK_1: reading from backup piece /home/oracle/backup/20240331/autobackup/orcl_arc_av2n2tmr_1_1_ORCL_20240331_351
channel ORA_AUX_DISK_1: piece handle=/home/oracle/backup/20240331/autobackup/orcl_arc_av2n2tmr_1_1_ORCL_20240331_351 tag=TAG20240331T125112
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
archived log file name=/u01/archive/1_44_1145177063.dbf thread=1 sequence=44
channel clone_default: deleting archived log(s)
archived log file name=/u01/archive/1_44_1145177063.dbf RECID=3 STAMP=1165106133
channel clone_default: deleting archived log(s)
archived log file name=/u01/archive/2_42_1145177063.dbf RECID=1 STAMP=1165106131
media recovery complete, elapsed time: 00:00:00
Finished recover at 2024-04-01 00:35:34
Oracle instance started

Total System Global Area     835104768 bytes

Fixed Size                     2257840 bytes
Variable Size                281021520 bytes
Database Buffers             549453824 bytes
Redo Buffers                   2371584 bytes

contents of Memory Script:
{
   sql clone "alter system set  db_name =
 ''ORCL'' comment=
 ''Reset to original value by RMAN'' scope=spfile";
   sql clone "alter system reset  db_unique_name scope=spfile";
   shutdown clone immediate;
   startup clone nomount;
}
executing Memory Script

sql statement: alter system set  db_name =  ''ORCL'' comment= ''Reset to original value by RMAN'' scope=spfile

sql statement: alter system reset  db_unique_name scope=spfile

Oracle instance shut down

connected to auxiliary database (not started)
Oracle instance started

Total System Global Area     835104768 bytes

Fixed Size                     2257840 bytes
Variable Size                281021520 bytes
Database Buffers             549453824 bytes
Redo Buffers                   2371584 bytes
sql statement: CREATE CONTROLFILE REUSE SET DATABASE "ORCL" RESETLOGS ARCHIVELOG
  MAXLOGFILES    192
  MAXLOGMEMBERS      3
  MAXDATAFILES     1024
  MAXINSTANCES    32
  MAXLOGHISTORY      292
 LOGFILE
  GROUP   1 ( '/u01/app/oracle/oradata/orcl/onlinelog/group_1.261.1145177063' ) SIZE 50 M  REUSE,
  GROUP   2 ( '/u01/app/oracle/oradata/orcl/onlinelog/group_2.262.1145177063' ) SIZE 50 M  REUSE
 DATAFILE
  '/u01/app/oracle/oradata/orcl/datafile/system.256.1145176977'
 CHARACTER SET AL32UTF8

sql statement: ALTER DATABASE ADD LOGFILE

  INSTANCE 'i2'
  GROUP   3 ( '/u01/app/oracle/oradata/orcl/onlinelog/group_3.265.1145177259' ) SIZE 50 M  REUSE,
  GROUP   4 ( '/u01/app/oracle/oradata/orcl/onlinelog/group_4.266.1145177259' ) SIZE 50 M  REUSE

contents of Memory Script:
{
   set newname for tempfile  1 to
 "/u01/app/oracle/oradata/orcl/tempfile/temp.263.1145177065";
   set newname for tempfile  2 to
 "/u01/app/oracle/oradata/orcl/tempfile/gg_temp.270.1157015869";
   set newname for tempfile  3 to
 "/u01/app/oracle/oradata/orcl/tempfile/entservicetemp.274.1165062123";
   switch clone tempfile all;
   catalog clone datafilecopy  "/u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977",
 "/u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979",
 "/u01/app/oracle/oradata/orcl/datafile/users.259.1145176979",
 "/u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133",
 "/u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867",
 "/u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519",
 "/u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049";
   switch clone datafile all;
}
executing Memory Script

executing command: SET NEWNAME

executing command: SET NEWNAME

executing command: SET NEWNAME

renamed tempfile 1 to /u01/app/oracle/oradata/orcl/tempfile/temp.263.1145177065 in control file
renamed tempfile 2 to /u01/app/oracle/oradata/orcl/tempfile/gg_temp.270.1157015869 in control file
renamed tempfile 3 to /u01/app/oracle/oradata/orcl/tempfile/entservicetemp.274.1165062123 in control file

cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977 RECID=1 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979 RECID=2 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/users.259.1145176979 RECID=3 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133 RECID=4 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867 RECID=5 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519 RECID=6 STAMP=1165106152
cataloged datafile copy
datafile copy file name=/u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049 RECID=7 STAMP=1165106152

datafile 2 switched to datafile copy
input datafile copy RECID=1 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977
datafile 3 switched to datafile copy
input datafile copy RECID=2 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979
datafile 4 switched to datafile copy
input datafile copy RECID=3 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/users.259.1145176979
datafile 5 switched to datafile copy
input datafile copy RECID=4 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133
datafile 6 switched to datafile copy
input datafile copy RECID=5 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867
datafile 7 switched to datafile copy
input datafile copy RECID=6 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519
datafile 8 switched to datafile copy
input datafile copy RECID=7 STAMP=1165106152 file name=/u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049
Reenabling controlfile options for auxiliary database
Executing: alter database add supplemental log data
Executing: alter database add supplemental log data(ALL) columns
Executing: alter database force logging

contents of Memory Script:
{
   Alter clone database open resetlogs;
}
executing Memory Script

database opened
Finished Duplicate Db at 2024-04-01 00:35:55

4.4.验证数据

4.4.1.查看实例参数

set linesize 999 
set pagesize 999
show parameter name

NAME				     TYPE		    VALUE
------------------------------------ ---------------------- ------------------------------
cell_offloadgroup_name		     string
db_file_name_convert		       string		    +DATA/orcl/datafile, /u01/app/oracle/oradata/orcl/datafile,
							                              +DATA/orcl/tempfile, /u01/app/oracle/oradata/orcl/tempfile
db_name 			                 string		    ORCL
db_unique_name			           string		    ORCL
global_names			             boolean		  FALSE
instance_name			             string		    orcl
lock_name_space 		           string
log_file_name_convert		       string		    +DATA/orcl/onlinelog, /u01/app/oracle/oradata/orcl/onlinelog
processor_group_name		       string
service_names			             string		    ORCL


4.4.2.查看归档

SQL> archive log list;
Database log mode	       Archive Mode
Automatic archival	       Enabled
Archive destination	       /u01/archive
Oldest online log sequence     1
Next log sequence to archive   1
Current log sequence	       1

4.4.3.查看所有数据文件

因参数文件中有convert相关参数,所以文件路径会自动转换;

duplicate不会恢复standby redolog

--查看所有数据文件
set line 9999 pagesize 9999
col FILE_NAME format a90
select 'datafile' file_type, file#,name FILE_NAME,status,enabled from v$datafile
union all
select 'tempfile',file#,name FILE_NAME,status,enabled from v$tempfile
union all
select 'logfile',group# file#,member FILE_NAME,status,'' from v$logfile
union all
select 'controlfile', to_number('') ,name FILE_NAME,status,'' from v$controlfile;

FILE_TYPE		    FILE# FILE_NAME										     STATUS	    ENABLED
---------------------- ---------- ------------------------------------------------------------------------------------------ -------------- --------------------
datafile			1 /u01/app/oracle/oradata/orcl/datafile/system.256.1145176977				     SYSTEM	    READ WRITE
datafile			2 /u01/app/oracle/oradata/orcl/datafile/sysaux.257.1145176977				     ONLINE	    READ WRITE
datafile			3 /u01/app/oracle/oradata/orcl/datafile/undotbs1.258.1145176979 			     ONLINE	    READ WRITE
datafile			4 /u01/app/oracle/oradata/orcl/datafile/users.259.1145176979				     ONLINE	    READ WRITE
datafile			5 /u01/app/oracle/oradata/orcl/datafile/undotbs2.264.1145177133 			     ONLINE	    READ WRITE
datafile			6 /u01/app/oracle/oradata/orcl/datafile/gg_data.269.1157015867				     ONLINE	    READ WRITE
datafile			7 /u01/app/oracle/oradata/orcl/datafile/test_tbs.271.1157115519 			     ONLINE	    READ WRITE
datafile			8 /u01/app/oracle/oradata/orcl/datafile/entservice.273.1165062049			     ONLINE	    READ WRITE
tempfile			1 /u01/app/oracle/oradata/orcl/tempfile/temp.263.1145177065				     ONLINE	    READ WRITE
tempfile			2 /u01/app/oracle/oradata/orcl/tempfile/gg_temp.270.1157015869				     ONLINE	    READ WRITE
tempfile			3 /u01/app/oracle/oradata/orcl/tempfile/entservicetemp.274.1165062123			     ONLINE	    READ WRITE
logfile 			2 /u01/app/oracle/oradata/orcl/onlinelog/group_2.262.1145177063
logfile 			1 /u01/app/oracle/oradata/orcl/onlinelog/group_1.261.1145177063
logfile 			3 /u01/app/oracle/oradata/orcl/onlinelog/group_3.265.1145177259
logfile 			4 /u01/app/oracle/oradata/orcl/onlinelog/group_4.266.1145177259
controlfile			  /u01/app/oracle/oradata/orcl/controlfile/control01.ctl
controlfile			  /u01/app/oracle/oradata/orcl/controlfile/control02.ctl

17 rows selected.

4.4.4.业务数据验证

--查看数据量
select sum(bytes)/1024/1024/1024 as "size(G)" from dba_data_files;
select round(sum(bytes) / 1024 / 1024 / 1024, 2) || 'G'
  from dba_segments
 where owner not in ('MDSYS', 'OUTLN', 'CTXSYS', 'OLAPSYS', 'HR', 'SYSTEM',
        'EXFSYS', 'SCOTT', 'DBSNMP', 'ORDSYS', 'SYSMAN', 'OE', 'PM', 'SH',
        'XDB', 'ORDDATA', 'IX', 'SYS', 'WMSYS') ;

--查看用户
set lin1000 pagesize 999
select username,default_tablespace,temporary_tablespace from dba_users where username not in ('SYS','SYSTEM','HR','OUTLN','MGMT_VIEW','FLOWS_FILES','MDSYS','ORDSYS','EXFSYS','DBSNMP','WMSYS','APPQOSSYS','APEX_030200','OWBSYS_AUDIT','ORDDATA','CTXSYS','ANONYMOUS','SYSMAN','XDB','ORDPLUGINS','OWBSYS','SI_INFORMTN_SCHEMA','OLAPSYS','SCOTT','ORACLE_OCM','XS$NULL','BI','PM','MDDATA','IX','SH','DIP','OE','APEX_PUBLIC_USER','SPATIAL_CSW_ADMIN_USR','SPATIAL_WFS_ADMIN_USR');

OGG			       GG_DATA			      GG_TEMP
ENTSERVICE		       ENTSERVICE		      ENTSERVICETEMP
TEST			       TEST_TBS 		      TEMP


--每个业务用户下的总对象数量校验
SELECT D.OWNER,COUNT(1)
  FROM dba_objects d
 WHERE d.OWNER   in ('TEST','OGG','ENTSERVICE')
 AND NOT EXISTS (SELECT 1 FROM DBA_RECYCLEBIN B WHERE B.object_name=D.OBJECT_NAME AND D.OWNER=B.owner) 
 GROUP BY D.OWNER
 ORDER BY D.OWNER ;
ENTSERVICE				1
OGG				      	4
TEST				    	5


--每个业务用户下的各个对象类别的数量校验
set pagesize 999
select OWNER,OBJECT_TYPE,status,count(OBJECT_NAME) from dba_objects  where owner in ('TEST','OGG','ENTSERVICE')  group by OBJECT_TYPE,owner,status order by 1,3,2;

OWNER							     OBJECT_TYPE			    STATUS	   COUNT(OBJECT_NAME)
------------------------------------------------------------ -------------------------------------- -------------- ------------------
ENTSERVICE		    TABLE		   VALID		    1
OGG			         INDEX		   VALID		    2
OGG			         TABLE		   VALID		    2
TEST			       INDEX		   VALID		    2
TEST			       SEQUENCE 	 VALID		    1
TEST			       TABLE		   VALID		    2


--查询回收站lob对象数量(可选),lob数量不一致排查
select owner,type,count(*) from dba_recyclebin group by owner,type order by owner;

--数据量统计
----新增count_rows 函数
CREATE OR REPLACE FUNCTION count_rows (
	table_name IN varchar2, 
	owner IN varchar2 := NULL
)
RETURN number AUTHID current_user
AS
num_rows number;
	stmt varchar2(2000);
BEGIN
	IF owner IS NULL THEN
		stmt := 'select count(*) from "' || table_name || '"';
	ELSE
		stmt := 'select count(*) from "' || owner || '"."' || table_name || '"';
	END IF;
	EXECUTE IMMEDIATE stmt INTO num_rows;
	RETURN num_rows;
END;
/
---调用count_rows 函数,统计各种表的记录数
select table_name, count_rows(table_name) nrows from user_tables  where tablespace_name='ENTSERVICE'
order by nrows desc;     

--查看
SQL> select count(*) from  ENTSERVICE.CUST;

  COUNT(*)
----------
      1000

数据已经恢复

4.5.收尾操作

4.5.1. redo 日志组操作

4.5.1.1.清除未使用线程的 redo 日志组

--查看redo 日志组 
SQL> select thread#,status,enabled from v$thread;

   THREAD# STATUS	ENABLED
---------- ------------ ----------------
	 1 OPEN 	PUBLIC
	 2 CLOSED	PUBLIC

--查看redo日志组成员
SQL>  select group#,thread#,archived,status from v$log;

    GROUP#    THREAD# ARCHIV STATUS
---------- ---------- ------ --------------------------------
	 1	    1 NO     CURRENT
	 2	    1 YES    UNUSED
	 3	    2 YES    UNUSED
	 4	    2 YES    UNUSED

--查redo大小和位置 状态
set linesize 999
col member for a80
select b.thread#,a.group#,a.member,bytes/1024/1024,b.members,b.status from v$logfile a,v$log b where a.group#=b.group#;	 

--禁用线程2的redo日志组  只有状态是UNUSED和inacitve才能删除, acitve和 current不能删除,需alter system switch logfile 切换状态变成INACTIVE才能删除
SQL> alter database disable thread 2 ;

Database altered.


--数据库里删除线程2的redo日志文件
SQL> alter database drop logfile group 3 ;

Database altered.

SQL> alter database drop logfile group 4 ;

Database altered.

--操作系统上删除线程2的redo日志文件
[oracle@11g-db ~]$ cd /u01/app/oracle/oradata/orcl/onlinelog/
[oracle@11g-db onlinelog]$ ls -l
total 204816
-rw-r----- 1 oracle oinstall 52429312 Apr  1 00:45 group_1.261.1145177063
-rw-r----- 1 oracle oinstall 52429312 Apr  1 00:35 group_2.262.1145177063
-rw-r----- 1 oracle oinstall 52429312 Apr  1 00:45 group_3.265.1145177259
-rw-r----- 1 oracle oinstall 52429312 Apr  1 00:35 group_4.266.1145177259

[oracle@11g-db onlinelog]$ rm -f group_3.265.1145177259
[oracle@11g-db onlinelog]$ rm -f group_4.266.1145177259

4.5.1.2.增加日志组

生产环境业务库,数据量比较大,这里决定再增加一些日志组

--查redo大小和位置 状态
set linesize 999
col member for a60
select b.thread#,a.group#,a.member,bytes/1024/1024,b.members,b.status from v$logfile a,v$log b where a.group#=b.group#;	 

--增加联机日志文件
alter database add logfile group 3 '/u01/app/oracle/oradata/orcl/onlinelog/redo03.log' size 50m;
alter database add logfile group 4 '/u01/app/oracle/oradata/orcl/onlinelog/redo04.log' size 50m;

4.5.2.清除多余的 undo 文件

rac 中每个节点使用的都是自己的 undo,所以有 2 个 undo 文件,这里可以清除,也可以不用清除,因为有的时候 undo 坏了可以很迅速的切换到另外的 undo 空间, 本文档采用清除多余的undo文件。

--查看undo 文件
SQL> select name from v$tablespace where name like 'UNDO%';

NAME
------------------------------------------------------------
UNDOTBS1
UNDOTBS2

--查看默认undo表空间
SQL> show parameter undo_tablespace;

NAME				     TYPE		    VALUE
------------------------------------ ---------------------- ------------------------------
undo_tablespace 		     string		    UNDOTBS1

--删除多余的 undo 文件 
SQL> drop tablespace undotbs2 including contents and datafiles;

Tablespace dropped.

4.5.3.参数修改

4.5.3.1.修改sga和pga参数

内存修改可参考如下公式:

--os_memory_total=$(awk '/MemTotal/{print $2}' /proc/meminfo)

--$sga_target=os_memory_total * 8 * 8 / 100 / 1024

--pga_target=os_memory_total * 8 * 2 / 100 / 1024

--备份参数文件
create pfile='/home/oracle/pfile1124.ora' from spfile;

--更改参数
alter system set sga_max_size=4096M  scope=spfile;
alter system set sga_target=4096M  scope=spfile;
alter system set pga_aggregate_target=1024M  scope=spfile;

--重启生效
shutdown immediate
startup open

4.5.3.2.重置convert相关参数

--查看convert相关参数
set line 9999 pagesize 9999
show parameter name

NAME				     TYPE		    VALUE
------------------------------------ ---------------------- ------------------------------
cell_offloadgroup_name		   string
db_file_name_convert		     string		    +DATA/orcl/datafile, /u01/app/
							                            oracle/oradata/orcl/datafile,
							                            +DATA/orcl/tempfile, /u01/app/
							                            oracle/oradata/orcl/tempfile
db_name 			               string		    ORCL
db_unique_name			         string		    ORCL
global_names			           boolean		  FALSE
instance_name			           string		    orcl
lock_name_space 		         string
log_file_name_convert		     string		    +DATA/orcl/onlinelog, /u01/app
							                            /oracle/oradata/orcl/onlinelog
processor_group_name		     string
service_names			           string		    ORCL

--重置convert相关参数
SQL> alter system reset db_file_name_convert scope=spfile;

System altered.

SQL> alter system reset log_file_name_convert scope=spfile;

System altered.

--重启生效
shutdown immediate
startup open

五.注意事项

如果指定SCN进行恢复,会提示报错,按SCN恢复需要连target库或是catalog库

rman auxiliary /
RMAN> DUPLICATE DATABASE TO orcl BACKUP LOCATION '/u01/rman/' NOFILENAMECHECK until scn 2534722;
Starting Duplicate Db at 07-DEC-23
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 12/07/2023 20:43:24
RMAN-05501: aborting duplication of target database
RMAN-05542: Only UNTIL TIME can be used with DUPLICATE without TARGET and CATALOG connections

如果指定时间进行恢复,而备份里没这些归档,那么会失败。

rman auxiliary /
DUPLICATE DATABASE TO orcl BACKUP LOCATION '/u01/rman/' NOFILENAMECHECK UNTIL TIME "TO_DATE('07-DEC-2023 20:27:42','DD-MON-YYYYHH24:MI:SS')"

报错如下:

RMAN-03015: error occurred in stored script Memory Script
RMAN-06136: ORACLE error from auxiliary database: ORA-01507: database not mounted
ORA-06512: at "SYS.X$DBMS_RCVMAN", line 13658
ORA-06512: at line 1
RMAN-06617: UNTIL TIME (07-DEC-23) is ahead of last NEXT TIME in archived logs (07-DEC-23)
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 12/07/2023 20:49:26
RMAN-05501: aborting duplication of target database

六.总结

1、duplicate在线搭建ADG,然后再切换(需要看网络带宽,这种方法一般是首选,停机时间短),过程中会产生新归档。

2、RAC端rman备份到NAS,单机端挂载,再恢复(需要额外的存储空间,这个过程也受到带宽限制,整个时间需要备份+恢复2个时间相加),过程中会产生新归档。

3、OGG或者DSG(需要了解业务结构,需要测试,避免恢复后有逻辑错误),过程中会产生新归档。

4、RAC端EXPDP到NAS,单机端挂载NAS,再导入(需要额外的存储空间,需要的时间为导出+导入时间之和,还需要了解业务结构,需要测试,避免恢复后有逻辑错误),过程中会产生新归档。

5、冷迁移:cp数据文件,过程中不产生新归档

参考链接:https://www.modb.pro/doc/45317

https://blog.csdn.net/sudahai102448567/article/details/104893099

参考文档:

📎【RAC】rac数据库恢复到单机-解密.pdf

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论