Hello Friend's,
Accidentally dropped or corrupted some critical tables in your Oracle database? Don’t panic! Oracle Recovery Manager (RMAN) provides a powerful feature called Table Recovery (RECOVER TABLE) that allows you to restore and recover individual tables to a specific point in time.
In this blog post, I’ll walk you through a real-world example of recovering multiple tables using RMAN, including the necessary commands and what to expect during the process.
Scenario: Recovering Multiple Tables to a Previous State We need to recover four tables from the TES1D schema to their state as of November 17, 2024, at 12:00 PM. The recovered tables will be remapped to a different schema (Sultan) to avoid overwriting existing data.
Step 1: Connect to RMAN First, we connect to RMAN with both the target database (the database we’re recovering) and the recovery catalog (which stores backup metadata).
oracle@dm04db04:~> rman target / catalog rman/Password@rman
Output:
Recovery Manager: Release 19.0.0.0.0 - Production on Thu Nov 28 12:55:02 2024 Version 19.11.0.0.0 connected to target database: PRIMDB (DBID=2942511722) connected to recovery catalog databaseStep 2: Execute the RECOVER TABLE Command
We use the RECOVER TABLE command with the following options:
UNTIL TIME – Specifies the point-in-time for recovery.
AUXILIARY DESTINATION – Defines where temporary files will be stored.
REMAP TABLE – Maps the original table to a new schema/name.
RMAN> RECOVER TABLE TES1D.SPT_WORK_ITEM, TES1D.TEMP_WORKGROUP , TES1D.SPT_ROLE_MINING_RESULT , TES1D.SPT_GROUP_INDEX
UNTIL TIME "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')"
AUXILIARY DESTINATION '+DATA'
REMAP TABLE 'TES1D'.'SPT_WORK_ITEM':'Sultan'.'SPT_WORK_ITEM',
'TES1D'.'TEMP_WORKGROUP':'Sultan'.'TEMP_WORKGROUP',
'TES1D'.'SPT_ROLE_MINING_RESULT':'Sultan'.'SPT_ROLE_MINING_RESULT',
'TES1D'.'SPT_GROUP_INDEX':'Sultan'.'SPT_GROUP_INDEX';2> 3> 4> 5> 6> 7>
Step 3: RMAN Recovery Process
When the recovery starts, RMAN:
Allocates channels for backup and restore operations.
Creates an automatic auxiliary instance (temporary database) to facilitate recovery.
Output:
Starting recover at 28-NOV-2024 130103
allocated channel: ORA_SBT_TAPE_1
channel ORA_SBT_TAPE_1: SID=684 device type=SBT_TAPE
channel ORA_SBT_TAPE_1: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_SBT_TAPE_2
channel ORA_SBT_TAPE_2: SID=3254 device type=SBT_TAPE
channel ORA_SBT_TAPE_2: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_SBT_TAPE_3
channel ORA_SBT_TAPE_3: SID=677 device type=SBT_TAPE
channel ORA_SBT_TAPE_3: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=18 device type=DISK
Creating automatic instance, with SID='nttc'
initialization parameters used for automatic instance:
db_name=PRIMDB
db_unique_name=nttc_pitr_PRIMDB
compatible=19.0.0
db_block_size=8192
db_files=200
diagnostic_dest=/u01/app/oracle
_system_trig_enabled=FALSE
sga_target=15360M
processes=200
db_create_file_dest=+DATA
log_archive_dest_1='location=+DATA'
#No auxiliary parameter file used
starting up automatic instance PRIMDB
Oracle instance started
Total System Global Area 16106125912 bytes
Fixed Size 15993432 bytes
Variable Size 2181038080 bytes
Database Buffers 13891534848 bytes
Redo Buffers 17559552 bytes
Automatic instance created
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')";
# restore the controlfile
restore clone controlfile;
# mount the controlfile
sql clone 'alter database mount clone database';
# archive current online log
sql 'alter system archive log current';
# resync catalog
resync catalog;
}
executing Memory Script
executing command: SET until clause
Starting restore at 28-NOV-2024 130137
allocated channel: ORA_AUX_SBT_TAPE_1
channel ORA_AUX_SBT_TAPE_1: SID=134 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_1: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_SBT_TAPE_2
channel ORA_AUX_SBT_TAPE_2: SID=145 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_2: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_SBT_TAPE_3
channel ORA_AUX_SBT_TAPE_3: SID=156 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_3: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=167 device type=DISK
channel ORA_AUX_SBT_TAPE_1: starting datafile backup set restore
channel ORA_AUX_SBT_TAPE_1: restoring control file
channel ORA_AUX_SBT_TAPE_1: reading from backup piece c-2942511722-20241117-0c
channel ORA_AUX_SBT_TAPE_1: piece handle=c-2942511722-20241117-0c tag=TAG20241117T113131
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:07
output file name=+DATA/PRIMDB/CONTROLFILE/current.1549.1186232507
Finished restore at 28-NOV-2024 130152
sql statement: alter database mount clone database
sql statement: alter system archive log current
starting full resync of recovery catalog
full resync complete
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')";
# set destinations for recovery set and auxiliary set datafiles
set newname for clone datafile 1 to new;
set newname for clone datafile 4 to new;
set newname for clone datafile 82 to new;
set newname for clone datafile 3 to new;
set newname for clone tempfile 1 to new;
set newname for clone tempfile 2 to new;
set newname for clone tempfile 3 to new;
set newname for clone tempfile 4 to new;
# switch all tempfiles
switch clone tempfile all;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 1, 4, 82, 3;
switch clone datafile all;
}
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
renamed tempfile 1 to +DATA in control file
renamed tempfile 2 to +DATA in control file
renamed tempfile 3 to +DATA in control file
renamed tempfile 4 to +DATA in control file
Starting restore at 28-NOV-2024 130205
using channel ORA_AUX_SBT_TAPE_1
using channel ORA_AUX_SBT_TAPE_2
using channel ORA_AUX_SBT_TAPE_3
using channel ORA_AUX_DISK_1
channel ORA_AUX_SBT_TAPE_1: starting datafile backup set restore
channel ORA_AUX_SBT_TAPE_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00001 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00004 to +DATA
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ja3ab5vs_169578_1_1
channel ORA_AUX_SBT_TAPE_2: starting datafile backup set restore
channel ORA_AUX_SBT_TAPE_2: specifying datafile(s) to restore from backup set
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00082 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00003 to +DATA
channel ORA_AUX_SBT_TAPE_2: reading from backup piece j93ab5vs_169577_1_1
channel ORA_AUX_SBT_TAPE_2: piece handle=j93ab5vs_169577_1_1 tag=TAG20241117T061100
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 02:40:17
channel ORA_AUX_SBT_TAPE_1: piece handle=ja3ab5vs_169578_1_1 tag=TAG20241117T061100
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 02:41:27
Finished restore at 28-NOV-2024 155213
datafile 1 switched to datafile copy
input datafile copy RECID=306 STAMP=1186242733 file name=+DATA/PRIMDB/DATAFILE/system.1550.1186242683
datafile 4 switched to datafile copy
input datafile copy RECID=307 STAMP=1186242733 file name=+DATA/PRIMDB/DATAFILE/undotbs1.1528.1186233047
datafile 82 switched to datafile copy
input datafile copy RECID=308 STAMP=1186242733 file name=+DATA/PRIMDB/DATAFILE/undotbs1.1530.1186242585
datafile 3 switched to datafile copy
input datafile copy RECID=309 STAMP=1186242733 file name=+DATA/PRIMDB/DATAFILE/sysaux.1527.1186242203
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile 1 online";
sql clone "alter database datafile 4 online";
sql clone "alter database datafile 82 online";
sql clone "alter database datafile 3 online";
# recover and open database read only
recover clone database tablespace "SYSTEM", "UNDOTBS1", "SYSAUX";
sql clone 'alter database open read only';
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 1 online
sql statement: alter database datafile 4 online
sql statement: alter database datafile 82 online
sql statement: alter database datafile 3 online
Starting recover at 28-NOV-2024 155214
using channel ORA_AUX_SBT_TAPE_1
using channel ORA_AUX_SBT_TAPE_2
using channel ORA_AUX_SBT_TAPE_3
using channel ORA_AUX_DISK_1
starting media recovery
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493681
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493682
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493683
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493684
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493685
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jb3ab74r_169579_1
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493686
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493687
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493688
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_jc3ab74s_169580_1
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493689
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493690
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493691
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493692
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493693
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493694
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493695
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493696
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493697
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493698
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493699
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493700
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493701
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493702
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493703
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_jh3aball_169585_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jb3ab74r_169579_1 tag=TAG20241117T063051
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:15
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493681.1556.1186242747 thread=1 sequence=493681
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493682.1534.1186242747 thread=1 sequence=493682
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493683.1480.1186242747 thread=1 sequence=493683
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493684.1476.1186242747 thread=1 sequence=493684
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493685.1469.1186242747 thread=1 sequence=493685
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493704
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493705
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493706
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493707
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493708
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493709
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493710
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493711
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493712
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493713
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493714
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jg3abalk_169584_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_jc3ab74s_169580_1 tag=TAG20241117T063051
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:00:24
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493686.1472.1186242747 thread=1 sequence=493686
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493687.1477.1186242747 thread=1 sequence=493687
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493688.1475.1186242747 thread=1 sequence=493688
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493715
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493716
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493717
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493718
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493719
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493720
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493721
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493722
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493723
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493724
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493725
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493726
channel ORA_AUX_SBT_TAPE_2: reading from backup piece INCR0_PRIMDB_jl3abbuk_169589_1
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_jh3aball_169585_1 tag=TAG20241117T073059
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:29
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493689.1474.1186242749 thread=1 sequence=493689
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493690.1460.1186242761 thread=1 sequence=493690
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493691.1458.1186242763 thread=1 sequence=493691
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493692.1529.1186242749 thread=1 sequence=493692
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493693.1466.1186242751 thread=1 sequence=493693
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493694.1468.1186242749 thread=1 sequence=493694
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493695.1459.1186242761 thread=1 sequence=493695
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493696.1461.1186242761 thread=1 sequence=493696
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493697.1465.1186242751 thread=1 sequence=493697
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493698.1473.1186242749 thread=1 sequence=493698
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493699.1464.1186242761 thread=1 sequence=493699
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493700.1557.1186242749 thread=1 sequence=493700
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493701.1467.1186242749 thread=1 sequence=493701
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493702.1462.1186242761 thread=1 sequence=493702
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493703.1463.1186242761 thread=1 sequence=493703
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493727
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493728
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493729
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493730
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493731
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493732
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493733
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493734
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493735
channel ORA_AUX_SBT_TAPE_3: reading from backup piece INCR0_PRIMDB_jm3abbuk_169590_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jg3abalk_169584_1 tag=TAG20241117T073059
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:34
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493704.1525.1186242771 thread=1 sequence=493704
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493705.1430.1186242783 thread=1 sequence=493705
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493706.1431.1186242783 thread=1 sequence=493706
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493707.1434.1186242783 thread=1 sequence=493707
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493708.1433.1186242783 thread=1 sequence=493708
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493709.2249.1186242785 thread=1 sequence=493709
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493710.1432.1186242783 thread=1 sequence=493710
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493711.1457.1186242771 thread=1 sequence=493711
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493712.1456.1186242771 thread=1 sequence=493712
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493713.1455.1186242771 thread=1 sequence=493713
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493714.1526.1186242771 thread=1 sequence=493714
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493736
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493737
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493738
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493739
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493740
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493741
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493742
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493743
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493744
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493745
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493746
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493747
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493748
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493749
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jq3abe5s_169594_1
channel ORA_AUX_SBT_TAPE_2: piece handle=INCR0_PRIMDB_jl3abbuk_169589_1 tag=TAG20241117T075252
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:00:51
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493715.2248.1186242791 thread=1 sequence=493715
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493716.1439.1186242777 thread=1 sequence=493716
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493717.1442.1186242777 thread=1 sequence=493717
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493718.1428.1186242791 thread=1 sequence=493718
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493719.1437.1186242777 thread=1 sequence=493719
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493720.1440.1186242777 thread=1 sequence=493720
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493721.1444.1186242777 thread=1 sequence=493721
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493722.1429.1186242791 thread=1 sequence=493722
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493723.1454.1186242777 thread=1 sequence=493723
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493724.1441.1186242777 thread=1 sequence=493724
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493725.2225.1186242791 thread=1 sequence=493725
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493726.1435.1186242777 thread=1 sequence=493726
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493750
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493751
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493752
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493753
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493754
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493755
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493756
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493757
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493758
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493759
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_jr3abe5t_169595_1
channel ORA_AUX_SBT_TAPE_3: piece handle=INCR0_PRIMDB_jm3abbuk_169590_1 tag=TAG20241117T075252
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:46
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493727.1425.1186242805 thread=1 sequence=493727
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493728.1453.1186242805 thread=1 sequence=493728
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493729.1418.1186242819 thread=1 sequence=493729
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493730.1424.1186242805 thread=1 sequence=493730
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493731.1420.1186242805 thread=1 sequence=493731
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493732.1451.1186242805 thread=1 sequence=493732
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493733.712.1186242819 thread=1 sequence=493733
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493734.1452.1186242805 thread=1 sequence=493734
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493735.1427.1186242805 thread=1 sequence=493735
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493760
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493761
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493762
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493763
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493764
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493765
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493766
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493767
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493768
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493769
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493770
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493771
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493772
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493773
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493774
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493775
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493776
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493777
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493778
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493779
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493780
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493781
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493782
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_jv3abhm9_169599_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jq3abe5s_169594_1 tag=TAG20241117T083052
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:40
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493736.1398.1186242841 thread=1 sequence=493736
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493737.1415.1186242827 thread=1 sequence=493737
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493738.1396.1186242843 thread=1 sequence=493738
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493739.1413.1186242827 thread=1 sequence=493739
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493740.1397.1186242841 thread=1 sequence=493740
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493741.1417.1186242827 thread=1 sequence=493741
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493742.1399.1186242841 thread=1 sequence=493742
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493743.1414.1186242827 thread=1 sequence=493743
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493744.1405.1186242827 thread=1 sequence=493744
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493745.1416.1186242827 thread=1 sequence=493745
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493746.1400.1186242841 thread=1 sequence=493746
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493747.1411.1186242827 thread=1 sequence=493747
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493748.1401.1186242841 thread=1 sequence=493748
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493749.1412.1186242827 thread=1 sequence=493749
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493783
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493784
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493785
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493786
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493787
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493788
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493789
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493790
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493791
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493792
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493793
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493794
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493795
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493796
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493797
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493798
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493799
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493800
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493801
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493802
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493803
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_k03abhm9_169600_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_jr3abe5t_169595_1 tag=TAG20241117T083052
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:00:38
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493750.1445.1186242863 thread=1 sequence=493750
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493751.1392.1186242863 thread=1 sequence=493751
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493752.1447.1186242853 thread=1 sequence=493752
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493753.1450.1186242851 thread=1 sequence=493753
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493754.2560.1186242865 thread=1 sequence=493754
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493755.1448.1186242853 thread=1 sequence=493755
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493756.1391.1186242863 thread=1 sequence=493756
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493757.1446.1186242853 thread=1 sequence=493757
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493758.1449.1186242851 thread=1 sequence=493758
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493759.1295.1186242863 thread=1 sequence=493759
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493804
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493805
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493806
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493807
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493808
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493809
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493810
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493811
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493812
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493813
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493814
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493815
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493816
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493817
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493818
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493819
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493820
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493821
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493822
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493823
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493824
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493825
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493826
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493827
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493828
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_k43abl6n_169604_1
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_jv3abhm9_169599_1 tag=TAG20241117T093048
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:39
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493760.1336.1186242881 thread=1 sequence=493760
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493761.2554.1186242881 thread=1 sequence=493761
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493762.1338.1186242867 thread=1 sequence=493762
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493763.2546.1186242895 thread=1 sequence=493763
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493764.2555.1186242881 thread=1 sequence=493764
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493765.2547.1186242893 thread=1 sequence=493765
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493766.2553.1186242881 thread=1 sequence=493766
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493767.1344.1186242867 thread=1 sequence=493767
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493768.2556.1186242879 thread=1 sequence=493768
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493769.1345.1186242867 thread=1 sequence=493769
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493770.2558.1186242867 thread=1 sequence=493770
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493771.2559.1186242867 thread=1 sequence=493771
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493772.2557.1186242867 thread=1 sequence=493772
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493773.1341.1186242867 thread=1 sequence=493773
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493774.1323.1186242893 thread=1 sequence=493774
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493775.1346.1186242867 thread=1 sequence=493775
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493776.1329.1186242893 thread=1 sequence=493776
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493777.2562.1186242893 thread=1 sequence=493777
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493778.1382.1186242881 thread=1 sequence=493778
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493779.1337.1186242879 thread=1 sequence=493779
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493780.1322.1186242893 thread=1 sequence=493780
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493781.1383.1186242881 thread=1 sequence=493781
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493782.2548.1186242893 thread=1 sequence=493782
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493829
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493830
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493831
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493832
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493833
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493834
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493835
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493836
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493837
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493838
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493839
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493840
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493841
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493842
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493843
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493844
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493845
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493846
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493847
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493848
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493849
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493850
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493851
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493852
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_k53abl6n_169605_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_k03abhm9_169600_1 tag=TAG20241117T093048
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:56
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493783.2544.1186242903 thread=1 sequence=493783
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493784.2549.1186242891 thread=1 sequence=493784
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493785.2538.1186242915 thread=1 sequence=493785
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493786.1321.1186242903 thread=1 sequence=493786
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493787.3070.1186242891 thread=1 sequence=493787
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493788.1380.1186242903 thread=1 sequence=493788
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493789.2552.1186242891 thread=1 sequence=493789
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493790.1381.1186242903 thread=1 sequence=493790
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493791.1335.1186242891 thread=1 sequence=493791
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493792.1311.1186242915 thread=1 sequence=493792
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493793.2539.1186242915 thread=1 sequence=493793
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493794.2537.1186242915 thread=1 sequence=493794
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493795.1310.1186242915 thread=1 sequence=493795
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493796.1312.1186242915 thread=1 sequence=493796
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493797.2543.1186242905 thread=1 sequence=493797
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493798.2550.1186242891 thread=1 sequence=493798
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493799.2545.1186242903 thread=1 sequence=493799
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493800.1317.1186242915 thread=1 sequence=493800
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493801.2551.1186242891 thread=1 sequence=493801
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493802.1330.1186242891 thread=1 sequence=493802
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493803.1334.1186242891 thread=1 sequence=493803
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493853
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493854
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493855
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493856
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493857
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493858
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493859
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493860
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493861
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_k93abond_169609_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_k43abl6n_169604_1 tag=TAG20241117T103046
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:01:18
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493804.1300.1186242935 thread=1 sequence=493804
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493805.1304.1186242933 thread=1 sequence=493805
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493806.2532.1186242933 thread=1 sequence=493806
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493807.2535.1186242921 thread=1 sequence=493807
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493808.1303.1186242935 thread=1 sequence=493808
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493809.2542.1186242907 thread=1 sequence=493809
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493810.2530.1186242935 thread=1 sequence=493810
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493811.2534.1186242921 thread=1 sequence=493811
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493812.2561.1186242921 thread=1 sequence=493812
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493813.1306.1186242933 thread=1 sequence=493813
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493814.2536.1186242921 thread=1 sequence=493814
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493815.1319.1186242907 thread=1 sequence=493815
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493816.1368.1186242907 thread=1 sequence=493816
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493817.1309.1186242921 thread=1 sequence=493817
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493818.1367.1186242907 thread=1 sequence=493818
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493819.2541.1186242907 thread=1 sequence=493819
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493820.1111.1186242921 thread=1 sequence=493820
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493821.2540.1186242907 thread=1 sequence=493821
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493822.2529.1186242945 thread=1 sequence=493822
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493823.1373.1186242907 thread=1 sequence=493823
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493824.2533.1186242923 thread=1 sequence=493824
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493825.2531.1186242933 thread=1 sequence=493825
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493826.2257.1186242933 thread=1 sequence=493826
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493827.1308.1186242921 thread=1 sequence=493827
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493828.1372.1186242907 thread=1 sequence=493828
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493862
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493863
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493864
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493865
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493866
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493867
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493868
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_ka3abond_169610_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_k93abond_169609_1 tag=TAG20241117T113053
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:48
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493869
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493870
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493871
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493872
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493873
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493874
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493875
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493876
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493877
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493878
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_ke3abs7n_169614_1
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_k53abl6n_169605_1 tag=TAG20241117T103046
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:01:27
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493829.1299.1186242945 thread=1 sequence=493829
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493830.2521.1186242963 thread=1 sequence=493830
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493831.2528.1186242945 thread=1 sequence=493831
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493832.1282.1186242973 thread=1 sequence=493832
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493833.2523.1186242961 thread=1 sequence=493833
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493834.2526.1186242947 thread=1 sequence=493834
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493835.1288.1186242961 thread=1 sequence=493835
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493836.1289.1186242959 thread=1 sequence=493836
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493837.1277.1186242985 thread=1 sequence=493837
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493838.1298.1186242945 thread=1 sequence=493838
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493839.1357.1186242973 thread=1 sequence=493839
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493840.2525.1186242947 thread=1 sequence=493840
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493841.2705.1186242961 thread=1 sequence=493841
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493842.1296.1186242947 thread=1 sequence=493842
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493843.1366.1186242961 thread=1 sequence=493843
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493844.1359.1186242973 thread=1 sequence=493844
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493845.1297.1186242947 thread=1 sequence=493845
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493846.2518.1186242975 thread=1 sequence=493846
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493847.2452.1186242945 thread=1 sequence=493847
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493848.2520.1186242973 thread=1 sequence=493848
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493849.1283.1186242961 thread=1 sequence=493849
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493850.1360.1186242973 thread=1 sequence=493850
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493851.2522.1186242961 thread=1 sequence=493851
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493852.1281.1186242975 thread=1 sequence=493852
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493853.3039.1186242985 thread=1 sequence=493853
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493854.3038.1186242995 thread=1 sequence=493854
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493855.2822.1186242985 thread=1 sequence=493855
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493856.1280.1186242985 thread=1 sequence=493856
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493857.1279.1186242985 thread=1 sequence=493857
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493858.1278.1186242985 thread=1 sequence=493858
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493859.2517.1186242985 thread=1 sequence=493859
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493860.2519.1186242985 thread=1 sequence=493860
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493861.1356.1186242985 thread=1 sequence=493861
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493879
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_kf3abs7n_169615_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_ke3abs7n_169614_1 tag=TAG20241117T123047
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:01:08
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_ka3abond_169610_1 tag=TAG20241117T113053
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:01:08
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493862.2516.1186243033 thread=1 sequence=493862
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493863.2744.1186243033 thread=1 sequence=493863
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493864.1276.1186243033 thread=1 sequence=493864
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493865.3036.1186243033 thread=1 sequence=493865
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493866.2714.1186243033 thread=1 sequence=493866
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493867.2818.1186243033 thread=1 sequence=493867
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493868.3037.1186243033 thread=1 sequence=493868
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493869.2247.1186243047 thread=1 sequence=493869
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493870.2829.1186243045 thread=1 sequence=493870
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493871.2821.1186243033 thread=1 sequence=493871
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493872.2704.1186243033 thread=1 sequence=493872
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493873.2708.1186243033 thread=1 sequence=493873
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493874.1273.1186243033 thread=1 sequence=493874
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493875.2773.1186243033 thread=1 sequence=493875
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493876.1272.1186243033 thread=1 sequence=493876
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493877.2707.1186243033 thread=1 sequence=493877
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493878.3035.1186243033 thread=1 sequence=493878
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_kf3abs7n_169615_1 tag=TAG20241117T123047
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:35
archived log file name=+DATA/PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493879.2823.1186243101 thread=1 sequence=493879
media recovery complete, elapsed time: 00:00:01
Finished recover at 28-NOV-2024 155856
sql statement: alter database open read only
contents of Memory Script:
{
sql clone "create spfile from memory";
shutdown clone immediate;
startup clone nomount;
sql clone "alter system set control_files =
''+DATA/PRIMDB/CONTROLFILE/current.1549.1186232507'' comment=
''RMAN set'' scope=spfile";
shutdown clone immediate;
startup clone nomount;
# mount database
sql clone 'alter database mount clone database';
}
executing Memory Script
sql statement: create spfile from memory
database closed
database dismounted
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 16106125912 bytes
Fixed Size 15993432 bytes
Variable Size 2181038080 bytes
Database Buffers 13891534848 bytes
Redo Buffers 17559552 bytes
sql statement: alter system set control_files = ''+DATA/PRIMDB/CONTROLFILE/current.1549.1186232507'' comment= ''RMAN set'' scope=spfile
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 16106125912 bytes
Fixed Size 15993432 bytes
Variable Size 2181038080 bytes
Database Buffers 13891534848 bytes
Redo Buffers 17559552 bytes
sql statement: alter database mount clone database
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')";
# set destinations for recovery set and auxiliary set datafiles
set newname for datafile 2 to new;
set newname for datafile 5 to new;
set newname for datafile 8 to new;
set newname for datafile 9 to new;
set newname for datafile 10 to new;
set newname for datafile 11 to new;
set newname for datafile 12 to new;
set newname for datafile 13 to new;
set newname for datafile 14 to new;
set newname for datafile 15 to new;
set newname for datafile 16 to new;
set newname for datafile 17 to new;
set newname for datafile 18 to new;
set newname for datafile 19 to new;
set newname for datafile 20 to new;
set newname for datafile 21 to new;
set newname for datafile 22 to new;
set newname for datafile 23 to new;
set newname for datafile 24 to new;
set newname for datafile 25 to new;
set newname for datafile 26 to new;
set newname for datafile 27 to new;
set newname for datafile 28 to new;
set newname for datafile 29 to new;
set newname for datafile 30 to new;
set newname for datafile 31 to new;
set newname for datafile 32 to new;
set newname for datafile 33 to new;
set newname for datafile 34 to new;
set newname for datafile 35 to new;
set newname for datafile 36 to new;
set newname for datafile 37 to new;
set newname for datafile 38 to new;
set newname for datafile 39 to new;
set newname for datafile 40 to new;
set newname for datafile 41 to new;
set newname for datafile 42 to new;
set newname for datafile 43 to new;
set newname for datafile 44 to new;
set newname for datafile 45 to new;
set newname for datafile 46 to new;
set newname for datafile 47 to new;
set newname for datafile 48 to new;
set newname for datafile 49 to new;
set newname for datafile 50 to new;
set newname for datafile 51 to new;
set newname for datafile 52 to new;
set newname for datafile 53 to new;
set newname for datafile 54 to new;
set newname for datafile 55 to new;
set newname for datafile 56 to new;
set newname for datafile 57 to new;
set newname for datafile 58 to new;
set newname for datafile 59 to new;
set newname for datafile 60 to new;
set newname for datafile 61 to new;
set newname for datafile 62 to new;
set newname for datafile 63 to new;
set newname for datafile 64 to new;
set newname for datafile 65 to new;
set newname for datafile 66 to new;
set newname for datafile 67 to new;
set newname for datafile 68 to new;
set newname for datafile 69 to new;
set newname for datafile 70 to new;
set newname for datafile 71 to new;
set newname for datafile 72 to new;
set newname for datafile 73 to new;
set newname for datafile 74 to new;
set newname for datafile 75 to new;
set newname for datafile 76 to new;
set newname for datafile 77 to new;
set newname for datafile 78 to new;
set newname for datafile 79 to new;
set newname for datafile 81 to new;
set newname for datafile 83 to new;
set newname for datafile 84 to new;
set newname for datafile 85 to new;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 2, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 83, 84, 85;
switch clone datafile all;
}
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
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
executing command: SET NEWNAME
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 28-NOV-2024 160011
allocated channel: ORA_AUX_SBT_TAPE_1
channel ORA_AUX_SBT_TAPE_1: SID=167 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_1: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_SBT_TAPE_2
channel ORA_AUX_SBT_TAPE_2: SID=178 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_2: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_SBT_TAPE_3
channel ORA_AUX_SBT_TAPE_3: SID=189 device type=SBT_TAPE
channel ORA_AUX_SBT_TAPE_3: Database Application Agent Oracle v19.8.0.0
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=200 device type=DISK
channel ORA_AUX_SBT_TAPE_1: starting datafile backup set restore
channel ORA_AUX_SBT_TAPE_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00008 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00010 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00012 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00014 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00016 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00018 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00020 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00022 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00024 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00026 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00028 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00030 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00032 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00034 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00036 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00038 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00040 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00042 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00044 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00046 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00048 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00050 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00052 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00054 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00056 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00058 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00060 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00062 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00064 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00066 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00068 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00070 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00072 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00074 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00076 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00078 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00081 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00083 to +DATA
channel ORA_AUX_SBT_TAPE_1: restoring datafile 00084 to +DATA
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ja3ab5vs_169578_1_1
channel ORA_AUX_SBT_TAPE_2: starting datafile backup set restore
channel ORA_AUX_SBT_TAPE_2: specifying datafile(s) to restore from backup set
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00002 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00005 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00009 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00011 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00013 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00015 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00017 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00019 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00021 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00023 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00025 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00027 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00029 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00031 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00033 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00035 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00037 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00039 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00041 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00043 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00045 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00047 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00049 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00051 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00053 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00055 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00057 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00059 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00061 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00063 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00065 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00067 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00069 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00071 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00073 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00075 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00077 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00079 to +DATA
channel ORA_AUX_SBT_TAPE_2: restoring datafile 00085 to +DATA
channel ORA_AUX_SBT_TAPE_2: reading from backup piece j93ab5vs_169577_1_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ja3ab5vs_169578_1_1 tag=TAG20241117T061100
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 03:08:07
channel ORA_AUX_SBT_TAPE_2: piece handle=j93ab5vs_169577_1_1 tag=TAG20241117T061100
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 03:09:27
Finished restore at 28-NOV-2024 191403
datafile 2 switched to datafile copy
input datafile copy RECID=388 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2746.1186243477
datafile 5 switched to datafile copy
input datafile copy RECID=389 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1264.1186243479
datafile 8 switched to datafile copy
input datafile copy RECID=390 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2505.1186243477
datafile 9 switched to datafile copy
input datafile copy RECID=391 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1333.1186243479
datafile 10 switched to datafile copy
input datafile copy RECID=392 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2836.1186243477
datafile 11 switched to datafile copy
input datafile copy RECID=393 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2813.1186243479
datafile 12 switched to datafile copy
input datafile copy RECID=394 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1271.1186243477
datafile 13 switched to datafile copy
input datafile copy RECID=395 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2511.1186243479
datafile 14 switched to datafile copy
input datafile copy RECID=396 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1270.1186243477
datafile 15 switched to datafile copy
input datafile copy RECID=397 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1263.1186243479
datafile 16 switched to datafile copy
input datafile copy RECID=398 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1267.1186243477
datafile 17 switched to datafile copy
input datafile copy RECID=399 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3034.1186243479
datafile 18 switched to datafile copy
input datafile copy RECID=400 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1266.1186243477
datafile 19 switched to datafile copy
input datafile copy RECID=401 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2735.1186243479
datafile 20 switched to datafile copy
input datafile copy RECID=402 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1265.1186243477
datafile 21 switched to datafile copy
input datafile copy RECID=403 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2740.1186245891
datafile 22 switched to datafile copy
input datafile copy RECID=404 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2513.1186245799
datafile 23 switched to datafile copy
input datafile copy RECID=405 STAMP=1186254847 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2739.1186245891
datafile 24 switched to datafile copy
input datafile copy RECID=406 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3042.1186245801
datafile 25 switched to datafile copy
input datafile copy RECID=407 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2738.1186245891
datafile 26 switched to datafile copy
input datafile copy RECID=408 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2477.1186245801
datafile 27 switched to datafile copy
input datafile copy RECID=409 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2718.1186245893
datafile 28 switched to datafile copy
input datafile copy RECID=410 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2435.1186245801
datafile 29 switched to datafile copy
input datafile copy RECID=411 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2690.1186245893
datafile 30 switched to datafile copy
input datafile copy RECID=412 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2433.1186245801
datafile 31 switched to datafile copy
input datafile copy RECID=413 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2508.1186245893
datafile 32 switched to datafile copy
input datafile copy RECID=414 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1262.1186245801
datafile 33 switched to datafile copy
input datafile copy RECID=415 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2507.1186245893
datafile 34 switched to datafile copy
input datafile copy RECID=416 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3033.1186245803
datafile 35 switched to datafile copy
input datafile copy RECID=417 STAMP=1186254848 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2506.1186245893
datafile 36 switched to datafile copy
input datafile copy RECID=418 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2831.1186245803
datafile 37 switched to datafile copy
input datafile copy RECID=419 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1257.1186248289
datafile 38 switched to datafile copy
input datafile copy RECID=420 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2470.1186248171
datafile 39 switched to datafile copy
input datafile copy RECID=421 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2706.1186248289
datafile 40 switched to datafile copy
input datafile copy RECID=422 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2468.1186248171
datafile 41 switched to datafile copy
input datafile copy RECID=423 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2703.1186248289
datafile 42 switched to datafile copy
input datafile copy RECID=424 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2434.1186248171
datafile 43 switched to datafile copy
input datafile copy RECID=425 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1256.1186248289
datafile 44 switched to datafile copy
input datafile copy RECID=426 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2236.1186248171
datafile 45 switched to datafile copy
input datafile copy RECID=427 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1255.1186248289
datafile 46 switched to datafile copy
input datafile copy RECID=428 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1260.1186248171
datafile 47 switched to datafile copy
input datafile copy RECID=429 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1254.1186248289
datafile 48 switched to datafile copy
input datafile copy RECID=430 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1259.1186248173
datafile 49 switched to datafile copy
input datafile copy RECID=431 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3040.1186248291
datafile 50 switched to datafile copy
input datafile copy RECID=432 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1258.1186248173
datafile 51 switched to datafile copy
input datafile copy RECID=433 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3032.1186248291
datafile 52 switched to datafile copy
input datafile copy RECID=434 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2732.1186248173
datafile 53 switched to datafile copy
input datafile copy RECID=435 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2515.1186250701
datafile 54 switched to datafile copy
input datafile copy RECID=436 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2826.1186250535
datafile 55 switched to datafile copy
input datafile copy RECID=437 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2514.1186250703
datafile 56 switched to datafile copy
input datafile copy RECID=438 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2742.1186250537
datafile 57 switched to datafile copy
input datafile copy RECID=439 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2453.1186250703
datafile 58 switched to datafile copy
input datafile copy RECID=440 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2741.1186250537
datafile 59 switched to datafile copy
input datafile copy RECID=441 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1248.1186250703
datafile 60 switched to datafile copy
input datafile copy RECID=442 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2731.1186250539
datafile 61 switched to datafile copy
input datafile copy RECID=443 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3041.1186250705
datafile 62 switched to datafile copy
input datafile copy RECID=444 STAMP=1186254849 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2715.1186250539
datafile 63 switched to datafile copy
input datafile copy RECID=445 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3031.1186250705
datafile 64 switched to datafile copy
input datafile copy RECID=446 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2698.1186250539
datafile 65 switched to datafile copy
input datafile copy RECID=447 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2830.1186250705
datafile 66 switched to datafile copy
input datafile copy RECID=448 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2697.1186250541
datafile 67 switched to datafile copy
input datafile copy RECID=449 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2781.1186250707
datafile 68 switched to datafile copy
input datafile copy RECID=450 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2691.1186250541
datafile 69 switched to datafile copy
input datafile copy RECID=451 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2688.1186253101
datafile 70 switched to datafile copy
input datafile copy RECID=452 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2780.1186252937
datafile 71 switched to datafile copy
input datafile copy RECID=453 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2687.1186253101
datafile 72 switched to datafile copy
input datafile copy RECID=454 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2728.1186252937
datafile 73 switched to datafile copy
input datafile copy RECID=455 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2686.1186253101
datafile 74 switched to datafile copy
input datafile copy RECID=456 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2727.1186252937
datafile 75 switched to datafile copy
input datafile copy RECID=457 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2685.1186253101
datafile 76 switched to datafile copy
input datafile copy RECID=458 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2726.1186252939
datafile 77 switched to datafile copy
input datafile copy RECID=459 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2684.1186253101
datafile 78 switched to datafile copy
input datafile copy RECID=460 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2725.1186252939
datafile 79 switched to datafile copy
input datafile copy RECID=461 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2680.1186253101
datafile 81 switched to datafile copy
input datafile copy RECID=462 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2689.1186252939
datafile 83 switched to datafile copy
input datafile copy RECID=463 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2723.1186252939
datafile 84 switched to datafile copy
input datafile copy RECID=464 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2724.1186252939
datafile 85 switched to datafile copy
input datafile copy RECID=465 STAMP=1186254850 file name=+DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2679.1186253103
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('2024-11-17 12:00:00', 'YYYY-MM-DD HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile 2 online";
sql clone "alter database datafile 5 online";
sql clone "alter database datafile 8 online";
sql clone "alter database datafile 9 online";
sql clone "alter database datafile 10 online";
sql clone "alter database datafile 11 online";
sql clone "alter database datafile 12 online";
sql clone "alter database datafile 13 online";
sql clone "alter database datafile 14 online";
sql clone "alter database datafile 15 online";
sql clone "alter database datafile 16 online";
sql clone "alter database datafile 17 online";
sql clone "alter database datafile 18 online";
sql clone "alter database datafile 19 online";
sql clone "alter database datafile 20 online";
sql clone "alter database datafile 21 online";
sql clone "alter database datafile 22 online";
sql clone "alter database datafile 23 online";
sql clone "alter database datafile 24 online";
sql clone "alter database datafile 25 online";
sql clone "alter database datafile 26 online";
sql clone "alter database datafile 27 online";
sql clone "alter database datafile 28 online";
sql clone "alter database datafile 29 online";
sql clone "alter database datafile 30 online";
sql clone "alter database datafile 31 online";
sql clone "alter database datafile 32 online";
sql clone "alter database datafile 33 online";
sql clone "alter database datafile 34 online";
sql clone "alter database datafile 35 online";
sql clone "alter database datafile 36 online";
sql clone "alter database datafile 37 online";
sql clone "alter database datafile 38 online";
sql clone "alter database datafile 39 online";
sql clone "alter database datafile 40 online";
sql clone "alter database datafile 41 online";
sql clone "alter database datafile 42 online";
sql clone "alter database datafile 43 online";
sql clone "alter database datafile 44 online";
sql clone "alter database datafile 45 online";
sql clone "alter database datafile 46 online";
sql clone "alter database datafile 47 online";
sql clone "alter database datafile 48 online";
sql clone "alter database datafile 49 online";
sql clone "alter database datafile 50 online";
sql clone "alter database datafile 51 online";
sql clone "alter database datafile 52 online";
sql clone "alter database datafile 53 online";
sql clone "alter database datafile 54 online";
sql clone "alter database datafile 55 online";
sql clone "alter database datafile 56 online";
sql clone "alter database datafile 57 online";
sql clone "alter database datafile 58 online";
sql clone "alter database datafile 59 online";
sql clone "alter database datafile 60 online";
sql clone "alter database datafile 61 online";
sql clone "alter database datafile 62 online";
sql clone "alter database datafile 63 online";
sql clone "alter database datafile 64 online";
sql clone "alter database datafile 65 online";
sql clone "alter database datafile 66 online";
sql clone "alter database datafile 67 online";
sql clone "alter database datafile 68 online";
sql clone "alter database datafile 69 online";
sql clone "alter database datafile 70 online";
sql clone "alter database datafile 71 online";
sql clone "alter database datafile 72 online";
sql clone "alter database datafile 73 online";
sql clone "alter database datafile 74 online";
sql clone "alter database datafile 75 online";
sql clone "alter database datafile 76 online";
sql clone "alter database datafile 77 online";
sql clone "alter database datafile 78 online";
sql clone "alter database datafile 79 online";
sql clone "alter database datafile 81 online";
sql clone "alter database datafile 83 online";
sql clone "alter database datafile 84 online";
sql clone "alter database datafile 85 online";
# recover and open resetlogs
recover clone database tablespace "DATA", "SYSTEM", "UNDOTBS1", "SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 2 online
sql statement: alter database datafile 5 online
sql statement: alter database datafile 8 online
sql statement: alter database datafile 9 online
sql statement: alter database datafile 10 online
sql statement: alter database datafile 11 online
sql statement: alter database datafile 12 online
sql statement: alter database datafile 13 online
sql statement: alter database datafile 14 online
sql statement: alter database datafile 15 online
sql statement: alter database datafile 16 online
sql statement: alter database datafile 17 online
sql statement: alter database datafile 18 online
sql statement: alter database datafile 19 online
sql statement: alter database datafile 20 online
sql statement: alter database datafile 21 online
sql statement: alter database datafile 22 online
sql statement: alter database datafile 23 online
sql statement: alter database datafile 24 online
sql statement: alter database datafile 25 online
sql statement: alter database datafile 26 online
sql statement: alter database datafile 27 online
sql statement: alter database datafile 28 online
sql statement: alter database datafile 29 online
sql statement: alter database datafile 30 online
sql statement: alter database datafile 31 online
sql statement: alter database datafile 32 online
sql statement: alter database datafile 33 online
sql statement: alter database datafile 34 online
sql statement: alter database datafile 35 online
sql statement: alter database datafile 36 online
sql statement: alter database datafile 37 online
sql statement: alter database datafile 38 online
sql statement: alter database datafile 39 online
sql statement: alter database datafile 40 online
sql statement: alter database datafile 41 online
sql statement: alter database datafile 42 online
sql statement: alter database datafile 43 online
sql statement: alter database datafile 44 online
sql statement: alter database datafile 45 online
sql statement: alter database datafile 46 online
sql statement: alter database datafile 47 online
sql statement: alter database datafile 48 online
sql statement: alter database datafile 49 online
sql statement: alter database datafile 50 online
sql statement: alter database datafile 51 online
sql statement: alter database datafile 52 online
sql statement: alter database datafile 53 online
sql statement: alter database datafile 54 online
sql statement: alter database datafile 55 online
sql statement: alter database datafile 56 online
sql statement: alter database datafile 57 online
sql statement: alter database datafile 58 online
sql statement: alter database datafile 59 online
sql statement: alter database datafile 60 online
sql statement: alter database datafile 61 online
sql statement: alter database datafile 62 online
sql statement: alter database datafile 63 online
sql statement: alter database datafile 64 online
sql statement: alter database datafile 65 online
sql statement: alter database datafile 66 online
sql statement: alter database datafile 67 online
sql statement: alter database datafile 68 online
sql statement: alter database datafile 69 online
sql statement: alter database datafile 70 online
sql statement: alter database datafile 71 online
sql statement: alter database datafile 72 online
sql statement: alter database datafile 73 online
sql statement: alter database datafile 74 online
sql statement: alter database datafile 75 online
sql statement: alter database datafile 76 online
sql statement: alter database datafile 77 online
sql statement: alter database datafile 78 online
sql statement: alter database datafile 79 online
sql statement: alter database datafile 81 online
sql statement: alter database datafile 83 online
sql statement: alter database datafile 84 online
sql statement: alter database datafile 85 online
Starting recover at 28-NOV-2024 191417
using channel ORA_AUX_SBT_TAPE_1
using channel ORA_AUX_SBT_TAPE_2
using channel ORA_AUX_SBT_TAPE_3
using channel ORA_AUX_DISK_1
starting media recovery
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493681
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493682
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493683
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493684
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493685
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jb3ab74r_169579_1
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493686
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493687
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493688
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_jc3ab74s_169580_1
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493689
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493690
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493691
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493692
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493693
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493694
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493695
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493696
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493697
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493698
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493699
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493700
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493701
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493702
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493703
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_jh3aball_169585_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jb3ab74r_169579_1 tag=TAG20241117T063051
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:15
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493681.1242.1186254877 thread=1 sequence=493681
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493681.1242.1186254877 RECID=651167 STAMP=1186254885
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493682.2678.1186254877 thread=1 sequence=493682
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493682.2678.1186254877 RECID=651170 STAMP=1186254886
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493683.1243.1186254877 thread=1 sequence=493683
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493683.1243.1186254877 RECID=651168 STAMP=1186254885
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493684.1244.1186254877 thread=1 sequence=493684
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493684.1244.1186254877 RECID=651169 STAMP=1186254886
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493685.2510.1186254877 thread=1 sequence=493685
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493685.2510.1186254877 RECID=651171 STAMP=1186254886
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493704
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493705
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493706
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493707
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493708
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493709
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493710
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493711
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493712
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493713
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493714
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jg3abalk_169584_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_jc3ab74s_169580_1 tag=TAG20241117T063051
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:00:28
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493686.2509.1186254877 thread=1 sequence=493686
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493686.2509.1186254877 RECID=651166 STAMP=1186254885
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493687.2436.1186254877 thread=1 sequence=493687
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493687.2436.1186254877 RECID=651164 STAMP=1186254884
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493688.2471.1186254877 thread=1 sequence=493688
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493688.2471.1186254877 RECID=651165 STAMP=1186254884
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493715
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493716
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493717
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493718
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493719
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493720
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493721
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493722
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493723
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493724
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493725
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493726
channel ORA_AUX_SBT_TAPE_2: reading from backup piece INCR0_PRIMDB_jl3abbuk_169589_1
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_jh3aball_169585_1 tag=TAG20241117T073059
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:33
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493689.1241.1186254877 thread=1 sequence=493689
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493689.1241.1186254877 RECID=651179 STAMP=1186254891
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493690.2495.1186254889 thread=1 sequence=493690
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493690.2495.1186254889 RECID=651183 STAMP=1186254900
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493691.3029.1186254891 thread=1 sequence=493691
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493691.3029.1186254891 RECID=651186 STAMP=1186254901
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493692.2733.1186254877 thread=1 sequence=493692
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493692.2733.1186254877 RECID=651176 STAMP=1186254889
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493693.833.1186254877 thread=1 sequence=493693
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493693.833.1186254877 RECID=651174 STAMP=1186254889
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493694.2729.1186254877 thread=1 sequence=493694
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493694.2729.1186254877 RECID=651175 STAMP=1186254889
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493695.1236.1186254889 thread=1 sequence=493695
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493695.1236.1186254889 RECID=651185 STAMP=1186254901
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493696.2711.1186254889 thread=1 sequence=493696
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493696.2711.1186254889 RECID=651184 STAMP=1186254900
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493697.1237.1186254877 thread=1 sequence=493697
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493697.1237.1186254877 RECID=651172 STAMP=1186254888
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493698.2734.1186254877 thread=1 sequence=493698
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493698.2734.1186254877 RECID=651177 STAMP=1186254889
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493699.3030.1186254889 thread=1 sequence=493699
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493699.3030.1186254889 RECID=651181 STAMP=1186254900
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493700.1240.1186254877 thread=1 sequence=493700
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493700.1240.1186254877 RECID=651178 STAMP=1186254891
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493701.1239.1186254877 thread=1 sequence=493701
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493701.1239.1186254877 RECID=651173 STAMP=1186254888
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493702.2712.1186254889 thread=1 sequence=493702
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493702.2712.1186254889 RECID=651180 STAMP=1186254899
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493703.2828.1186254889 thread=1 sequence=493703
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493703.2828.1186254889 RECID=651182 STAMP=1186254900
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493727
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493728
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493729
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493730
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493731
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493732
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493733
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493734
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493735
channel ORA_AUX_SBT_TAPE_3: reading from backup piece INCR0_PRIMDB_jm3abbuk_169590_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jg3abalk_169584_1 tag=TAG20241117T073059
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:33
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493704.2678.1186254903 thread=1 sequence=493704
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493704.2678.1186254903 RECID=651187 STAMP=1186254914
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493705.2810.1186254915 thread=1 sequence=493705
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493705.2810.1186254915 RECID=651205 STAMP=1186254925
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493706.2811.1186254915 thread=1 sequence=493706
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493706.2811.1186254915 RECID=651203 STAMP=1186254925
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493707.2495.1186254915 thread=1 sequence=493707
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493707.2495.1186254915 RECID=651200 STAMP=1186254924
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493708.3029.1186254915 thread=1 sequence=493708
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493708.3029.1186254915 RECID=651201 STAMP=1186254924
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493709.2694.1186254915 thread=1 sequence=493709
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493709.2694.1186254915 RECID=651204 STAMP=1186254925
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493710.1241.1186254915 thread=1 sequence=493710
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493710.1241.1186254915 RECID=651202 STAMP=1186254925
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493711.1244.1186254903 thread=1 sequence=493711
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493711.1244.1186254903 RECID=651190 STAMP=1186254915
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493712.1243.1186254903 thread=1 sequence=493712
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493712.1243.1186254903 RECID=651189 STAMP=1186254915
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493713.1242.1186254903 thread=1 sequence=493713
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493713.1242.1186254903 RECID=651188 STAMP=1186254914
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493714.2510.1186254903 thread=1 sequence=493714
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493714.2510.1186254903 RECID=651191 STAMP=1186254915
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493736
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493737
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493738
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493739
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493740
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493741
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493742
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493743
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493744
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493745
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493746
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493747
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493748
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493749
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jq3abe5s_169594_1
channel ORA_AUX_SBT_TAPE_2: piece handle=INCR0_PRIMDB_jl3abbuk_169589_1 tag=TAG20241117T075252
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:00:53
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493715.2729.1186254923 thread=1 sequence=493715
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493715.2729.1186254923 RECID=651208 STAMP=1186254929
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493716.2819.1186254909 thread=1 sequence=493716
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493716.2819.1186254909 RECID=651196 STAMP=1186254923
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493717.2436.1186254909 thread=1 sequence=493717
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493717.2436.1186254909 RECID=651198 STAMP=1186254923
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493718.2733.1186254923 thread=1 sequence=493718
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493718.2733.1186254923 RECID=651206 STAMP=1186254928
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493719.2817.1186254909 thread=1 sequence=493719
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493719.2817.1186254909 RECID=651194 STAMP=1186254922
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493720.2820.1186254909 thread=1 sequence=493720
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493720.2820.1186254909 RECID=651195 STAMP=1186254923
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493721.2471.1186254909 thread=1 sequence=493721
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493721.2471.1186254909 RECID=651199 STAMP=1186254923
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493722.1236.1186254921 thread=1 sequence=493722
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493722.1236.1186254921 RECID=651209 STAMP=1186254929
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493723.2814.1186254909 thread=1 sequence=493723
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493723.2814.1186254909 RECID=651192 STAMP=1186254921
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493724.2509.1186254909 thread=1 sequence=493724
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493724.2509.1186254909 RECID=651197 STAMP=1186254923
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493725.833.1186254923 thread=1 sequence=493725
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493725.833.1186254923 RECID=651207 STAMP=1186254928
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493726.2816.1186254909 thread=1 sequence=493726
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493726.2816.1186254909 RECID=651193 STAMP=1186254922
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493750
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493751
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493752
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493753
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493754
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493755
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493756
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493757
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493758
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493759
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_jr3abe5t_169595_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jq3abe5s_169594_1 tag=TAG20241117T083052
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:00:27
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493760
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493761
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493762
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493763
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493764
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493765
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493766
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493767
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493768
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493769
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493770
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493771
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493772
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493773
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493774
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493775
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493776
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493777
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493778
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493779
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493780
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493781
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493782
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_jv3abhm9_169599_1
channel ORA_AUX_SBT_TAPE_3: piece handle=INCR0_PRIMDB_jm3abbuk_169590_1 tag=TAG20241117T075252
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:00:53
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493727.3030.1186254937 thread=1 sequence=493727
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493727.3030.1186254937 RECID=651212 STAMP=1186254948
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493728.2828.1186254937 thread=1 sequence=493728
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493728.2828.1186254937 RECID=651216 STAMP=1186254949
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493729.2495.1186254949 thread=1 sequence=493729
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493729.2495.1186254949 RECID=651218 STAMP=1186254954
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493730.2734.1186254937 thread=1 sequence=493730
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493730.2734.1186254937 RECID=651211 STAMP=1186254948
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493731.1237.1186254937 thread=1 sequence=493731
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493731.1237.1186254937 RECID=651210 STAMP=1186254948
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493732.1240.1186254937 thread=1 sequence=493732
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493732.1240.1186254937 RECID=651213 STAMP=1186254949
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493733.3029.1186254949 thread=1 sequence=493733
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493733.3029.1186254949 RECID=651217 STAMP=1186254954
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493734.1239.1186254937 thread=1 sequence=493734
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493734.1239.1186254937 RECID=651214 STAMP=1186254949
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493735.2712.1186254937 thread=1 sequence=493735
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493735.2712.1186254937 RECID=651215 STAMP=1186254949
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493736.2819.1186254975 thread=1 sequence=493736
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493736.2819.1186254975 RECID=651228 STAMP=1186254983
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493737.1243.1186254961 thread=1 sequence=493737
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493737.1243.1186254961 RECID=651224 STAMP=1186254974
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493738.2678.1186254975 thread=1 sequence=493738
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493738.2678.1186254975 RECID=651227 STAMP=1186254982
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493739.1241.1186254961 thread=1 sequence=493739
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493739.1241.1186254961 RECID=651222 STAMP=1186254974
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493740.2729.1186254975 thread=1 sequence=493740
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493740.2729.1186254975 RECID=651232 STAMP=1186254983
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493741.2510.1186254961 thread=1 sequence=493741
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493741.2510.1186254961 RECID=651226 STAMP=1186254975
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493742.2436.1186254973 thread=1 sequence=493742
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493742.2436.1186254973 RECID=651229 STAMP=1186254983
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493743.1244.1186254961 thread=1 sequence=493743
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493743.1244.1186254961 RECID=651223 STAMP=1186254974
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493744.2810.1186254961 thread=1 sequence=493744
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493744.2810.1186254961 RECID=651219 STAMP=1186254973
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493745.1242.1186254961 thread=1 sequence=493745
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493745.1242.1186254961 RECID=651225 STAMP=1186254975
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493746.2733.1186254973 thread=1 sequence=493746
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493746.2733.1186254973 RECID=651230 STAMP=1186254983
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493747.2811.1186254961 thread=1 sequence=493747
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493747.2811.1186254961 RECID=651220 STAMP=1186254973
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493748.2817.1186254973 thread=1 sequence=493748
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493748.2817.1186254973 RECID=651231 STAMP=1186254983
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493749.2694.1186254961 thread=1 sequence=493749
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493749.2694.1186254961 RECID=651221 STAMP=1186254973
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493783
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493784
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493785
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493786
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493787
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493788
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493789
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493790
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493791
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493792
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493793
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493794
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493795
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493796
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493797
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493798
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493799
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493800
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493801
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493802
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493803
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_k03abhm9_169600_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_jv3abhm9_169599_1 tag=TAG20241117T093048
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:01:01
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493804
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493805
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493806
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493807
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493808
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493809
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493810
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493811
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493812
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493813
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493814
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493815
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493816
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493817
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493818
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493819
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493820
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493821
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493822
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493823
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493824
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493825
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493826
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493827
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493828
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_k43abl6n_169604_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_jr3abe5t_169595_1 tag=TAG20241117T083052
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:01:02
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493750.1237.1186255001 thread=1 sequence=493750
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493750.1237.1186255001 RECID=651247 STAMP=1186255009
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493751.2734.1186255001 thread=1 sequence=493751
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493751.2734.1186255001 RECID=651250 STAMP=1186255009
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493752.2814.1186254989 thread=1 sequence=493752
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493752.2814.1186254989 RECID=651234 STAMP=1186255000
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493753.2816.1186254989 thread=1 sequence=493753
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493753.2816.1186254989 RECID=651237 STAMP=1186255001
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493754.3030.1186255001 thread=1 sequence=493754
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493754.3030.1186255001 RECID=651246 STAMP=1186255009
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493755.2509.1186254989 thread=1 sequence=493755
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493755.2509.1186254989 RECID=651235 STAMP=1186255001
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493756.2495.1186255001 thread=1 sequence=493756
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493756.2495.1186255001 RECID=651249 STAMP=1186255009
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493757.1236.1186254989 thread=1 sequence=493757
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493757.1236.1186254989 RECID=651233 STAMP=1186255000
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493758.833.1186254989 thread=1 sequence=493758
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493758.833.1186254989 RECID=651236 STAMP=1186255001
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493759.2828.1186255001 thread=1 sequence=493759
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493759.2828.1186255001 RECID=651248 STAMP=1186255009
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493760.3043.1186255003 thread=1 sequence=493760
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493760.3043.1186255003 RECID=651255 STAMP=1186255016
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493761.3027.1186255003 thread=1 sequence=493761
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493761.3027.1186255003 RECID=651254 STAMP=1186255016
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493762.2710.1186254989 thread=1 sequence=493762
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493762.2710.1186254989 RECID=651238 STAMP=1186255002
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493763.2827.1186255017 thread=1 sequence=493763
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493763.2827.1186255017 RECID=651259 STAMP=1186255021
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493764.1234.1186255003 thread=1 sequence=493764
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493764.1234.1186255003 RECID=651256 STAMP=1186255017
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493765.2838.1186255017 thread=1 sequence=493765
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493765.2838.1186255017 RECID=651264 STAMP=1186255028
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493766.2840.1186255003 thread=1 sequence=493766
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493766.2840.1186255003 RECID=651252 STAMP=1186255016
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493767.2693.1186254989 thread=1 sequence=493767
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493767.2693.1186254989 RECID=651243 STAMP=1186255003
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493768.1240.1186255003 thread=1 sequence=493768
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493768.1240.1186255003 RECID=651258 STAMP=1186255017
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493769.2711.1186254989 thread=1 sequence=493769
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493769.2711.1186254989 RECID=651242 STAMP=1186255003
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493770.2455.1186254989 thread=1 sequence=493770
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493770.2455.1186254989 RECID=651241 STAMP=1186255003
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493771.2820.1186254989 thread=1 sequence=493771
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493771.2820.1186254989 RECID=651245 STAMP=1186255004
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493772.3028.1186254989 thread=1 sequence=493772
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493772.3028.1186254989 RECID=651239 STAMP=1186255002
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493773.1235.1186254989 thread=1 sequence=493773
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493773.1235.1186254989 RECID=651240 STAMP=1186255003
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493774.2712.1186255017 thread=1 sequence=493774
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493774.2712.1186255017 RECID=651261 STAMP=1186255027
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493775.2471.1186254989 thread=1 sequence=493775
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493775.2471.1186254989 RECID=651244 STAMP=1186255004
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493776.1243.1186255015 thread=1 sequence=493776
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493776.1243.1186255015 RECID=651262 STAMP=1186255027
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493777.1239.1186255017 thread=1 sequence=493777
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493777.1239.1186255017 RECID=651263 STAMP=1186255028
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493778.3029.1186255005 thread=1 sequence=493778
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493778.3029.1186255005 RECID=651251 STAMP=1186255015
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493779.2709.1186255003 thread=1 sequence=493779
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493779.2709.1186255003 RECID=651257 STAMP=1186255017
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493780.2678.1186255017 thread=1 sequence=493780
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493780.2678.1186255017 RECID=651265 STAMP=1186255028
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493781.2839.1186255005 thread=1 sequence=493781
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493781.2839.1186255005 RECID=651253 STAMP=1186255016
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493782.2819.1186255017 thread=1 sequence=493782
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493782.2819.1186255017 RECID=651260 STAMP=1186255027
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493829
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493830
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493831
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493832
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493833
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493834
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493835
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493836
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493837
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493838
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493839
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493840
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493841
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493842
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493843
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493844
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493845
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493846
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493847
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493848
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493849
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493850
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493851
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493852
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_k53abl6n_169605_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_k43abl6n_169604_1 tag=TAG20241117T103046
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:01:46
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493853
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493854
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493855
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493856
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493857
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493858
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493859
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493860
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493861
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_k93abond_169609_1
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_k03abhm9_169600_1 tag=TAG20241117T093048
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:01:47
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493783.2692.1186255067 thread=1 sequence=493783
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493783.2692.1186255067 RECID=651285 STAMP=1186255080
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493784.1241.1186255051 thread=1 sequence=493784
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493784.1241.1186255051 RECID=651266 STAMP=1186255064
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493785.3045.1186255081 thread=1 sequence=493785
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493785.3045.1186255081 RECID=651300 STAMP=1186255093
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493786.2700.1186255065 thread=1 sequence=493786
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493786.2700.1186255065 RECID=651283 STAMP=1186255080
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493787.1242.1186255051 thread=1 sequence=493787
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493787.1242.1186255051 RECID=651270 STAMP=1186255065
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493788.1237.1186255065 thread=1 sequence=493788
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493788.1237.1186255065 RECID=651282 STAMP=1186255080
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493789.2817.1186255051 thread=1 sequence=493789
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493789.2817.1186255051 RECID=651273 STAMP=1186255067
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493790.2734.1186255065 thread=1 sequence=493790
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493790.2734.1186255065 RECID=651284 STAMP=1186255080
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493791.2694.1186255051 thread=1 sequence=493791
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493791.2694.1186255051 RECID=651277 STAMP=1186255068
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493792.3026.1186255081 thread=1 sequence=493792
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493792.3026.1186255081 RECID=651298 STAMP=1186255092
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493793.2509.1186255081 thread=1 sequence=493793
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493793.2509.1186255081 RECID=651301 STAMP=1186255094
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493794.2825.1186255081 thread=1 sequence=493794
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493794.2825.1186255081 RECID=651296 STAMP=1186255092
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493795.2713.1186255081 thread=1 sequence=493795
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493795.2713.1186255081 RECID=651297 STAMP=1186255092
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493796.3030.1186255081 thread=1 sequence=493796
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493796.3030.1186255081 RECID=651299 STAMP=1186255093
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493797.2816.1186255069 thread=1 sequence=493797
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493797.2816.1186255069 RECID=651287 STAMP=1186255082
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493798.1244.1186255051 thread=1 sequence=493798
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493798.1244.1186255051 RECID=651268 STAMP=1186255065
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493799.2814.1186255065 thread=1 sequence=493799
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493799.2814.1186255065 RECID=651286 STAMP=1186255080
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493800.2495.1186255081 thread=1 sequence=493800
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493800.2495.1186255081 RECID=651302 STAMP=1186255094
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493801.2733.1186255051 thread=1 sequence=493801
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493801.2733.1186255051 RECID=651269 STAMP=1186255065
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493802.2510.1186255051 thread=1 sequence=493802
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493802.2510.1186255051 RECID=651267 STAMP=1186255065
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493803.2811.1186255051 thread=1 sequence=493803
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493803.2811.1186255051 RECID=651271 STAMP=1186255066
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493804.2737.1186255085 thread=1 sequence=493804
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493804.2737.1186255085 RECID=651306 STAMP=1186255099
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493805.3044.1186255085 thread=1 sequence=493805
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493805.3044.1186255085 RECID=651309 STAMP=1186255100
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493806.1230.1186255085 thread=1 sequence=493806
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493806.1230.1186255085 RECID=651308 STAMP=1186255099
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493807.2493.1186255067 thread=1 sequence=493807
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493807.2493.1186255067 RECID=651289 STAMP=1186255084
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493808.2824.1186255085 thread=1 sequence=493808
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493808.2824.1186255085 RECID=651305 STAMP=1186255098
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493809.2810.1186255051 thread=1 sequence=493809
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493809.2810.1186255051 RECID=651281 STAMP=1186255070
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493810.2812.1186255085 thread=1 sequence=493810
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493810.2812.1186255085 RECID=651307 STAMP=1186255099
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493811.2242.1186255069 thread=1 sequence=493811
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493811.2242.1186255069 RECID=651292 STAMP=1186255084
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493812.2472.1186255069 thread=1 sequence=493812
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493812.2472.1186255069 RECID=651291 STAMP=1186255084
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493813.2681.1186255085 thread=1 sequence=493813
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493813.2681.1186255085 RECID=651304 STAMP=1186255098
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493814.2673.1186255067 thread=1 sequence=493814
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493814.2673.1186255067 RECID=651293 STAMP=1186255084
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493815.2702.1186255051 thread=1 sequence=493815
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493815.2702.1186255051 RECID=651272 STAMP=1186255066
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493816.2809.1186255051 thread=1 sequence=493816
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493816.2809.1186255051 RECID=651278 STAMP=1186255068
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493817.2494.1186255067 thread=1 sequence=493817
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493817.2494.1186255067 RECID=651288 STAMP=1186255083
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493818.2770.1186255051 thread=1 sequence=493818
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493818.2770.1186255051 RECID=651275 STAMP=1186255067
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493819.2436.1186255051 thread=1 sequence=493819
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493819.2436.1186255051 RECID=651280 STAMP=1186255069
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493820.2437.1186255069 thread=1 sequence=493820
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493820.2437.1186255069 RECID=651294 STAMP=1186255085
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493821.2701.1186255051 thread=1 sequence=493821
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493821.2701.1186255051 RECID=651274 STAMP=1186255067
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493822.2710.1186255099 thread=1 sequence=493822
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493822.2710.1186255099 RECID=651311 STAMP=1186255102
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493823.2729.1186255051 thread=1 sequence=493823
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493823.2729.1186255051 RECID=651279 STAMP=1186255069
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493824.1232.1186255071 thread=1 sequence=493824
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493824.1232.1186255071 RECID=651295 STAMP=1186255085
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493825.3025.1186255085 thread=1 sequence=493825
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493825.3025.1186255085 RECID=651303 STAMP=1186255098
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493826.1236.1186255083 thread=1 sequence=493826
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493826.1236.1186255083 RECID=651310 STAMP=1186255100
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493827.2492.1186255069 thread=1 sequence=493827
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493827.2492.1186255069 RECID=651290 STAMP=1186255084
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493828.2815.1186255051 thread=1 sequence=493828
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493828.2815.1186255051 RECID=651276 STAMP=1186255068
channel ORA_AUX_SBT_TAPE_3: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493862
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493863
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493864
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493865
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493866
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493867
channel ORA_AUX_SBT_TAPE_3: restoring archived log
archived log thread=1 sequence=493868
channel ORA_AUX_SBT_TAPE_3: reading from backup piece ARCH_PRIMDB_ka3abond_169610_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_k93abond_169609_1 tag=TAG20241117T113053
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:03:22
channel ORA_AUX_SBT_TAPE_1: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493869
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493870
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493871
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493872
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493873
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493874
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493875
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493876
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493877
channel ORA_AUX_SBT_TAPE_1: restoring archived log
archived log thread=1 sequence=493878
channel ORA_AUX_SBT_TAPE_1: reading from backup piece ARCH_PRIMDB_ke3abs7n_169614_1
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_k53abl6n_169605_1 tag=TAG20241117T103046
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:03:23
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493829.2819.1186255157 thread=1 sequence=493829
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493829.2819.1186255157 RECID=651328 STAMP=1186255172
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493830.2827.1186255173 thread=1 sequence=493830
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493830.2827.1186255173 RECID=651336 STAMP=1186255185
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493831.2839.1186255157 thread=1 sequence=493831
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493831.2839.1186255157 RECID=651326 STAMP=1186255171
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493832.2734.1186255185 thread=1 sequence=493832
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493832.2734.1186255185 RECID=651339 STAMP=1186255196
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493833.2838.1186255171 thread=1 sequence=493833
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493833.2838.1186255171 RECID=651334 STAMP=1186255184
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493834.1239.1186255157 thread=1 sequence=493834
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493834.1239.1186255157 RECID=651319 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493835.1242.1186255171 thread=1 sequence=493835
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493835.1242.1186255171 RECID=651329 STAMP=1186255183
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493836.3045.1186255171 thread=1 sequence=493836
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493836.3045.1186255171 RECID=651330 STAMP=1186255183
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493837.1244.1186255197 thread=1 sequence=493837
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493837.1244.1186255197 RECID=651344 STAMP=1186255199
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493838.2678.1186255157 thread=1 sequence=493838
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493838.2678.1186255157 RECID=651323 STAMP=1186255171
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493839.2694.1186255183 thread=1 sequence=493839
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493839.2694.1186255183 RECID=651340 STAMP=1186255197
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493840.1235.1186255157 thread=1 sequence=493840
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493840.1235.1186255157 RECID=651315 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493841.1241.1186255171 thread=1 sequence=493841
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493841.1241.1186255171 RECID=651333 STAMP=1186255184
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493842.2471.1186255157 thread=1 sequence=493842
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493842.2471.1186255157 RECID=651316 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493843.2692.1186255171 thread=1 sequence=493843
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493843.2692.1186255171 RECID=651332 STAMP=1186255184
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493844.3026.1186255183 thread=1 sequence=493844
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493844.3026.1186255183 RECID=651341 STAMP=1186255197
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493845.3029.1186255157 thread=1 sequence=493845
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493845.3029.1186255157 RECID=651317 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493846.1237.1186255185 thread=1 sequence=493846
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493846.1237.1186255185 RECID=651337 STAMP=1186255196
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493847.2709.1186255157 thread=1 sequence=493847
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493847.2709.1186255157 RECID=651321 STAMP=1186255171
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493848.2817.1186255185 thread=1 sequence=493848
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493848.2817.1186255185 RECID=651338 STAMP=1186255196
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493849.2840.1186255171 thread=1 sequence=493849
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493849.2840.1186255171 RECID=651335 STAMP=1186255184
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493850.2509.1186255183 thread=1 sequence=493850
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493850.2509.1186255183 RECID=651342 STAMP=1186255197
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493851.1234.1186255171 thread=1 sequence=493851
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493851.1234.1186255171 RECID=651331 STAMP=1186255183
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493852.3027.1186255185 thread=1 sequence=493852
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493852.3027.1186255185 RECID=651343 STAMP=1186255198
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493853.1240.1186255157 thread=1 sequence=493853
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493853.1240.1186255157 RECID=651313 STAMP=1186255169
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493854.2700.1186255169 thread=1 sequence=493854
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493854.2700.1186255169 RECID=651327 STAMP=1186255172
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493855.2693.1186255157 thread=1 sequence=493855
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493855.2693.1186255157 RECID=651312 STAMP=1186255169
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493856.2820.1186255157 thread=1 sequence=493856
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493856.2820.1186255157 RECID=651320 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493857.2455.1186255157 thread=1 sequence=493857
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493857.2455.1186255157 RECID=651318 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493858.2711.1186255157 thread=1 sequence=493858
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493858.2711.1186255157 RECID=651314 STAMP=1186255170
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493859.2712.1186255157 thread=1 sequence=493859
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493859.2712.1186255157 RECID=651324 STAMP=1186255171
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493860.1243.1186255157 thread=1 sequence=493860
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493860.1243.1186255157 RECID=651325 STAMP=1186255171
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493861.3028.1186255157 thread=1 sequence=493861
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493861.3028.1186255157 RECID=651322 STAMP=1186255171
channel ORA_AUX_SBT_TAPE_2: starting archived log restore to default destination
channel ORA_AUX_SBT_TAPE_2: restoring archived log
archived log thread=1 sequence=493879
channel ORA_AUX_SBT_TAPE_2: reading from backup piece ARCH_PRIMDB_kf3abs7n_169615_1
channel ORA_AUX_SBT_TAPE_1: piece handle=ARCH_PRIMDB_ke3abs7n_169614_1 tag=TAG20241117T123047
channel ORA_AUX_SBT_TAPE_1: restored backup piece 1
channel ORA_AUX_SBT_TAPE_1: restore complete, elapsed time: 00:03:59
channel ORA_AUX_SBT_TAPE_3: piece handle=ARCH_PRIMDB_ka3abond_169610_1 tag=TAG20241117T113053
channel ORA_AUX_SBT_TAPE_3: restored backup piece 1
channel ORA_AUX_SBT_TAPE_3: restore complete, elapsed time: 00:03:59
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493862.1236.1186255359 thread=1 sequence=493862
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493862.1236.1186255359 RECID=651352 STAMP=1186255374
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493863.2492.1186255359 thread=1 sequence=493863
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493863.2492.1186255359 RECID=651355 STAMP=1186255375
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493864.3025.1186255359 thread=1 sequence=493864
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493864.3025.1186255359 RECID=651350 STAMP=1186255373
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493865.2710.1186255359 thread=1 sequence=493865
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493865.2710.1186255359 RECID=651345 STAMP=1186255371
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493866.2729.1186255359 thread=1 sequence=493866
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493866.2729.1186255359 RECID=651348 STAMP=1186255372
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493867.2815.1186255359 thread=1 sequence=493867
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493867.2815.1186255359 RECID=651353 STAMP=1186255375
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493868.1232.1186255359 thread=1 sequence=493868
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493868.1232.1186255359 RECID=651347 STAMP=1186255372
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493869.2681.1186255373 thread=1 sequence=493869
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493869.2681.1186255373 RECID=651360 STAMP=1186255380
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493870.2819.1186255371 thread=1 sequence=493870
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493870.2819.1186255371 RECID=651361 STAMP=1186255381
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493871.2702.1186255359 thread=1 sequence=493871
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493871.2702.1186255359 RECID=651349 STAMP=1186255373
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493872.2494.1186255359 thread=1 sequence=493872
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493872.2494.1186255359 RECID=651354 STAMP=1186255375
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493873.2437.1186255359 thread=1 sequence=493873
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493873.2437.1186255359 RECID=651358 STAMP=1186255377
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493874.2701.1186255359 thread=1 sequence=493874
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493874.2701.1186255359 RECID=651359 STAMP=1186255377
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493875.2770.1186255359 thread=1 sequence=493875
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493875.2770.1186255359 RECID=651357 STAMP=1186255376
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493876.2809.1186255359 thread=1 sequence=493876
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493876.2809.1186255359 RECID=651351 STAMP=1186255374
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493877.2436.1186255359 thread=1 sequence=493877
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493877.2436.1186255359 RECID=651356 STAMP=1186255376
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493878.2673.1186255359 thread=1 sequence=493878
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493878.2673.1186255359 RECID=651346 STAMP=1186255371
channel ORA_AUX_SBT_TAPE_2: piece handle=ARCH_PRIMDB_kf3abs7n_169615_1 tag=TAG20241117T123047
channel ORA_AUX_SBT_TAPE_2: restored backup piece 1
channel ORA_AUX_SBT_TAPE_2: restore complete, elapsed time: 00:02:08
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493879.3028.1186255599 thread=1 sequence=493879
channel clone_default: deleting archived log(s)
archived log file name=+DATA/NTTC_PITR_PRIMDB/ARCHIVELOG/2024_11_28/thread_1_seq_493879.3028.1186255599 RECID=651362 STAMP=1186255609
media recovery complete, elapsed time: 00:00:09
Finished recover at 28-NOV-2024 192855
database opened
contents of Memory Script:
{
# create directory for datapump import
sql "create or replace directory TSPITR_DIROBJ_DPDIR as ''
+DATA''";
# create directory for datapump export
sql clone "create or replace directory TSPITR_DIROBJ_DPDIR as ''
+DATA''";
}
executing Memory Script
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''+DATA''
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''+DATA''
Performing export of tables...
EXPDP> Starting "SYS"."TSPITR_EXP_nttc_Bqzu":
EXPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
EXPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
EXPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER
EXPDP> Processing object type TABLE_EXPORT/TABLE/TABLE
EXPDP> Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
EXPDP> Processing object type TABLE_EXPORT/TABLE/TRIGGER
EXPDP> . . exported "TES1D"."SPT_WORK_ITEM" 6.179 MB 1148 rows
EXPDP> . . exported "TES1D"."TEMP_WORKGROUP" 588.9 KB 1331 rows
EXPDP> . . exported "TES1D"."SPT_GROUP_INDEX" 0 KB 0 rows
EXPDP> . . exported "TES1D"."SPT_ROLE_MINING_RESULT" 0 KB 0 rows
EXPDP> Master table "SYS"."TSPITR_EXP_nttc_Bqzu" successfully loaded/unloaded
EXPDP> ******************************************************************************
EXPDP> Dump file set for SYS.TSPITR_EXP_nttc_Bqzu is:
EXPDP> +DATA/tspitr_nttc_17250.dmp
EXPDP> Job "SYS"."TSPITR_EXP_nttc_Bqzu" successfully completed at Thu Nov 28 19:30:16 2024 elapsed 0 00:01:01
Export completed
contents of Memory Script:
{
# shutdown clone before import
shutdown clone abort
}
executing Memory Script
Oracle instance shut down
Performing import of tables...
IMPDP> Master table "SYS"."TSPITR_IMP_nttc_ujqt" successfully loaded/unloaded
IMPDP> Starting "SYS"."TSPITR_IMP_nttc_ujqt":
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
IMPDP> . . imported "Sultan"."SPT_WORK_ITEM" 6.179 MB 1148 rows
IMPDP> . . imported "Sultan"."TEMP_WORKGROUP" 588.9 KB 1331 rows
IMPDP> . . imported "Sultan"."SPT_GROUP_INDEX" 0 KB 0 rows
IMPDP> . . imported "Sultan"."SPT_ROLE_MINING_RESULT" 0 KB 0 rows
IMPDP> Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
IMPDP> Processing object type TABLE_EXPORT/TABLE/TRIGGER
IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER
IMPDP> ORA-39082: Object type TRIGGER:"Sultan"."TRG_TEMP_WORKGROUP" created with compilation warnings
IMPDP> Job "SYS"."TSPITR_IMP_nttc_ujqt" completed with 1 error(s) at Thu Nov 28 19:31:33 2024 elapsed 0 00:01:05
import completed with errors; Oracle Data Pump dump file tspitr_nttc_17250.dmp is retained
Removing automatic instance
Automatic instance removed
auxiliary instance file +DATA/PRIMDB/TEMPFILE/temp.1419.1186243137 deleted
auxiliary instance file +DATA/PRIMDB/TEMPFILE/temp.2736.1186243137 deleted
auxiliary instance file +DATA/PRIMDB/TEMPFILE/temp.2730.1186243137 deleted
auxiliary instance file +DATA/PRIMDB/TEMPFILE/temp.2699.1186243139 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/ONLINELOG/group_3.2673.1186255739 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/ONLINELOG/group_2.2436.1186255739 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/ONLINELOG/group_1.3028.1186255739 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2679.1186253103 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2724.1186252939 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2723.1186252939 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2689.1186252939 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2680.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2725.1186252939 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2684.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2726.1186252939 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2685.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2727.1186252937 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2686.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2728.1186252937 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2687.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2780.1186252937 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2688.1186253101 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2691.1186250541 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2781.1186250707 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2697.1186250541 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2830.1186250705 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2698.1186250539 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3031.1186250705 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2715.1186250539 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3041.1186250705 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2731.1186250539 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1248.1186250703 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2741.1186250537 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2453.1186250703 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2742.1186250537 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2514.1186250703 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2826.1186250535 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2515.1186250701 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2732.1186248173 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3032.1186248291 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1258.1186248173 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3040.1186248291 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1259.1186248173 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1254.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1260.1186248171 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1255.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2236.1186248171 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1256.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2434.1186248171 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2703.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2468.1186248171 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2706.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2470.1186248171 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1257.1186248289 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2831.1186245803 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2506.1186245893 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3033.1186245803 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2507.1186245893 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1262.1186245801 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2508.1186245893 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2433.1186245801 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2690.1186245893 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2435.1186245801 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2718.1186245893 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2477.1186245801 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2738.1186245891 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3042.1186245801 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2739.1186245891 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2513.1186245799 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2740.1186245891 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1265.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2735.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1266.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.3034.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1267.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1263.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1270.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2511.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1271.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2813.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2836.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1333.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2505.1186243477 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.1264.1186243479 deleted
auxiliary instance file +DATA/NTTC_PITR_PRIMDB/DATAFILE/data.2746.1186243477 deleted
auxiliary instance file +DATA/PRIMDB/DATAFILE/sysaux.1527.1186242203 deleted
auxiliary instance file +DATA/PRIMDB/DATAFILE/undotbs1.1530.1186242585 deleted
auxiliary instance file +DATA/PRIMDB/DATAFILE/undotbs1.1528.1186233047 deleted
auxiliary instance file +DATA/PRIMDB/DATAFILE/system.1550.1186242683 deleted
auxiliary instance file +DATA/PRIMDB/CONTROLFILE/current.1549.1186232507 deleted
Finished recover at 28-NOV-2024 193153
Key Takeaways
✅ Point-in-Time Recovery (PITR) for Tables – RMAN allows restoring tables to a specific timestamp.
✅ Schema Remapping – You can recover tables into a different schema to avoid conflicts.
✅ Automatic Auxiliary Instance – RMAN handles temporary instance creation for recovery.
ConversionConversion EmoticonEmoticon