Sunday, October 25, 2020

RMAN recover table new feature

 Few questions to find out about RMAN recover table command:

  • What is the RMAN recover table actual doing? 
  • Can it work with pluggable database? 
  • How about tables related to foreign key constraints? 
  • Will parent table/tablespaces being restored as well?
  • How about foreign key constraints on the table recovered?

Setup SQL:

-- file_id = 13 after creation
create tablespace tbs_p1 datafile '/u01/app/oracle/oradata/ORCL/pdb1/tbs_p1.dbf' size 10m;
-- file_id = 14 after creation
create tablespace tbs_c1 datafile '/u01/app/oracle/oradata/ORCL/pdb1/tbs_c1.dbf' size 10m;

create table p1 (c1 int primary key) tablespace tbs_p1;
create table c1 (c1 int primary key, c2 int constraint fk1 references p1(c1)) tablespace tbs_c1;

insert into p1 values(1);
insert into c1 values(1,1);
commit;

Prepare Steps (backup, simulate table corrupts)

export NLS_DATE_FORMAT='YYYY-MON-DD HH24:MI:SS';
backup as compressed backupset database plus archivelog delete input format '/u01/backup/orcl_%U'; 
-- 25-OCT-20 11.08.00 AM +08:00
select systimestamp from dual;
truncate table c1;
truncate table p1;

Actual Recover table RMAN command:

-- recover till 25-OCT-20 11.08.00 AM +08:00
-- export NLS_DATE_FORMAT='YYYY-MON-DD HH24:MI:SS';
RECOVER TABLE donghua.c1 OF PLUGGABLE DATABASE pdb1
UNTIL TIME "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-DD HH24:MI:SS')"
REMAP TABLE 'DONGHUA'.'C1':'C1_TMP'
AUXILIARY DESTINATION '/u01/auxdest/';

Verification of C1_TMP (restored table)


SQL> select * from c1_tmp;


   C1    C2
_____ _____
    1     1


SQL> ddl c1_tmp

  CREATE TABLE "DONGHUA"."C1_TMP"
   (    "C1" NUMBER(*,0),
        "C2" NUMBER(*,0)
   ) SEGMENT CREATION IMMEDIATE
  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_C1" ;

SQL> ddl c1
  CREATE TABLE "DONGHUA"."C1"
   (    "C1" NUMBER(*,0),
        "C2" NUMBER(*,0),
         PRIMARY KEY ("C1")
  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_C1"  ENABLE,
         CONSTRAINT "FK1" FOREIGN KEY ("C2")
          REFERENCES "DONGHUA"."P1" ("C1") ENABLE
   ) SEGMENT CREATION IMMEDIATE
  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
 NOCOMPRESS LOGGING
  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_C1" ;
SQL>

RMAN Restoration Log: (with highlights)


[oracle@ol8 ~]$ export NLS_DATE_FORMAT='YYYY-MON-DD HH24:MI:SS';
[oracle@ol8 ~]$
[oracle@ol8 ~]$ rman target /

Recovery Manager: Release 19.0.0.0.0 - Production on Sun Oct 25 10:29:08 2020
Version 19.9.0.0.0

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

connected to target database: ORCL (DBID=1571399556)


RMAN> RECOVER TABLE donghua.c1 OF PLUGGABLE DATABASE pdb1
2> UNTIL TIME "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-DD HH24:MI:SS')"
3> REMAP TABLE 'DONGHUA'.'C1':'C1_TMP'
4> AUXILIARY DESTINATION '/u01/auxdest/';**

Starting recover at 2020-OCT-25 11:11:55
current log archived
using channel ORA_DISK_1
RMAN-05026: warning: presuming following set of tablespaces applies to specified point-in-time

List of tablespaces expected to have UNDO segments
Tablespace SYSTEM
Tablespace PDB1:SYSTEM
Tablespace UNDOTBS1
Tablespace PDB1:UNDOTBS1

Creating automatic instance, with SID='wszF'

initialization parameters used for automatic instance:
db_name=ORCL
db_unique_name=wszF_pitr_pdb1_ORCL
compatible=19.0.0
db_block_size=8192
db_files=200
diagnostic_dest=/u01/app/oracle
_system_trig_enabled=FALSE
sga_target=4000M
processes=200
db_create_file_dest=/u01/auxdest/
log_archive_dest_1='location=/u01/auxdest/'
enable_pluggable_database=true
_clone_one_pdb_recovery=true
#No auxiliary parameter file used


starting up automatic instance ORCL

Oracle instance started

Total System Global Area    4194300168 bytes

Fixed Size                     9142536 bytes
Variable Size                788529152 bytes
Database Buffers            3388997632 bytes
Redo Buffers                   7630848 bytes
Automatic instance created

contents of Memory Script:
{
# set requested point in time
set until  time "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-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';
}
executing Memory Script

executing command: SET until clause

Starting restore at 2020-OCT-25 11:12:06
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=4 device type=DISK

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: restoring control file
channel ORA_AUX_DISK_1: reading from backup piece /u01/fra/ORCL/autobackup/2020_10_25/o1_mf_s_1054724205_hs9tcf6m_.bkp
channel ORA_AUX_DISK_1: piece handle=/u01/fra/ORCL/autobackup/2020_10_25/o1_mf_s_1054724205_hs9tcf6m_.bkp tag=TAG20201025T105645
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/u01/auxdest/ORCL/controlfile/o1_mf_hs9v86tl_.ctl
Finished restore at 2020-OCT-25 11:12:07

sql statement: alter database mount clone database

sql statement: alter system archive log current

contents of Memory Script:
{
# set requested point in time
set until  time "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-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  9 to new;
set newname for clone datafile  4 to new;
set newname for clone datafile  11 to new;
set newname for clone datafile  3 to new;
set newname for clone datafile  10 to new;
set newname for clone tempfile  1 to new;
set newname for clone tempfile  3 to new;
# switch all tempfiles
switch clone tempfile all;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile  1, 9, 4, 11, 3, 10;

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 /u01/auxdest/ORCL/datafile/o1_mf_temp_%u_.tmp in control file
renamed tempfile 3 to /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_temp_%u_.tmp in control file

Starting restore at 2020-OCT-25 11:12:12
using channel ORA_AUX_DISK_1

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00009 to /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00011 to /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00010 to /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/fra/ORCL/A885FA20A1DA518FE0530F02000A242D/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t4yg5_.bkp
channel ORA_AUX_DISK_1: piece handle=/u01/fra/ORCL/A885FA20A1DA518FE0530F02000A242D/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t4yg5_.bkp tag=TAG20201025T105318
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:01:15
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to /u01/auxdest/ORCL/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00004 to /u01/auxdest/ORCL/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/auxdest/ORCL/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/fra/ORCL/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t8kjc_.bkp
channel ORA_AUX_DISK_1: piece handle=/u01/fra/ORCL/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t8kjc_.bkp tag=TAG20201025T105318
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:01:25
Finished restore at 2020-OCT-25 11:14:52

datafile 1 switched to datafile copy
input datafile copy RECID=10 STAMP=1054725293 file name=/u01/auxdest/ORCL/datafile/o1_mf_system_hs9vbqyc_.dbf
datafile 9 switched to datafile copy
input datafile copy RECID=11 STAMP=1054725293 file name=/u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_system_hs9v8dsy_.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=12 STAMP=1054725293 file name=/u01/auxdest/ORCL/datafile/o1_mf_undotbs1_hs9vbqz1_.dbf
datafile 11 switched to datafile copy
input datafile copy RECID=13 STAMP=1054725293 file name=/u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_undotbs1_hs9v8dsf_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=14 STAMP=1054725293 file name=/u01/auxdest/ORCL/datafile/o1_mf_sysaux_hs9vbqxm_.dbf
datafile 10 switched to datafile copy
input datafile copy RECID=15 STAMP=1054725293 file name=/u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_sysaux_hs9v8dsv_.dbf

contents of Memory Script:
{
# set requested point in time
set until  time "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-DD HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile  1 online";
sql clone 'PDB1' "alter database datafile
 9 online";
sql clone "alter database datafile  4 online";
sql clone 'PDB1' "alter database datafile
 11 online";
sql clone "alter database datafile  3 online";
sql clone 'PDB1' "alter database datafile
 10 online";
# recover and open database read only
recover clone database tablespace  "SYSTEM", "PDB1":"SYSTEM", "UNDOTBS1", "PDB1":"UNDOTBS1", "SYSAUX", "PDB1":"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  9 online

sql statement: alter database datafile  4 online

sql statement: alter database datafile  11 online

sql statement: alter database datafile  3 online

sql statement: alter database datafile  10 online

Starting recover at 2020-OCT-25 11:14:53
using channel ORA_AUX_DISK_1

starting media recovery

archived log for thread 1 with sequence 300 is already on disk as file /u01/fra/ORCL/archivelog/2020_10_25/o1_mf_1_300_hs9v7voj_.arc
channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=299
channel ORA_AUX_DISK_1: reading from backup piece /u01/backup/orcl_0cvdrk3b_1_1
channel ORA_AUX_DISK_1: piece handle=/u01/backup/orcl_0cvdrk3b_1_1 tag=TAG20201025T105643
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
archived log file name=/u01/auxdest/1_299_1043618822.dbf thread=1 sequence=299
archived log file name=/u01/fra/ORCL/archivelog/2020_10_25/o1_mf_1_300_hs9v7voj_.arc thread=1 sequence=300
media recovery complete, elapsed time: 00:00:02
Finished recover at 2020-OCT-25 11:14:57

sql statement: alter database open read only

contents of Memory Script:
{
sql clone 'alter pluggable database  PDB1 open read only';
}
executing Memory Script

sql statement: alter pluggable database  PDB1 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 =
  ''/u01/auxdest/ORCL/controlfile/o1_mf_hs9v86tl_.ctl'' 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    4194300168 bytes

Fixed Size                     9142536 bytes
Variable Size                788529152 bytes
Database Buffers            3388997632 bytes
Redo Buffers                   7630848 bytes

sql statement: alter system set  control_files =   ''/u01/auxdest/ORCL/controlfile/o1_mf_hs9v86tl_.ctl'' comment= ''RMAN set'' scope=spfile

Oracle instance shut down

connected to auxiliary database (not started)
Oracle instance started

Total System Global Area    4194300168 bytes

Fixed Size                     9142536 bytes
Variable Size                788529152 bytes
Database Buffers            3388997632 bytes
Redo Buffers                   7630848 bytes

sql statement: alter database mount clone database

contents of Memory Script:
{
# set requested point in time
set until  time "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-DD HH24:MI:SS')";
# set destinations for recovery set and auxiliary set datafiles
set newname for datafile  14 to new;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile  14;

switch clone datafile all;
}
executing Memory Script

executing command: SET until clause

executing command: SET NEWNAME

Starting restore at 2020-OCT-25 11:15:45
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=182 device type=DISK

channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00014 to /u01/auxdest/WSZF_PITR_PDB1_ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_tbs_c1_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/fra/ORCL/A885FA20A1DA518FE0530F02000A242D/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t4yg5_.bkp
channel ORA_AUX_DISK_1: piece handle=/u01/fra/ORCL/A885FA20A1DA518FE0530F02000A242D/backupset/2020_10_25/o1_mf_nnndf_TAG20201025T105318_hs9t4yg5_.bkp tag=TAG20201025T105318
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 2020-OCT-25 11:15:47

datafile 14 switched to datafile copy
input datafile copy RECID=17 STAMP=1054725347 file name=/u01/auxdest/WSZF_PITR_PDB1_ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_tbs_c1_hs9vh287_.dbf

contents of Memory Script:
{
# set requested point in time
set until  time "TO_DATE('2020-OCT-25 11:08:00','YYYY-MON-DD HH24:MI:SS')";
# online the datafiles restored or switched
sql clone 'PDB1' "alter database datafile
 14 online";
# recover and open resetlogs
recover clone database tablespace  "PDB1":"TBS_C1", "SYSTEM", "PDB1":"SYSTEM", "UNDOTBS1", "PDB1":"UNDOTBS1", "SYSAUX", "PDB1":"SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script

executing command: SET until clause

sql statement: alter database datafile  14 online

Starting recover at 2020-OCT-25 11:15:47
using channel ORA_AUX_DISK_1

starting media recovery

archived log for thread 1 with sequence 300 is already on disk as file /u01/fra/ORCL/archivelog/2020_10_25/o1_mf_1_300_hs9v7voj_.arc
channel ORA_AUX_DISK_1: starting archived log restore to default destination
channel ORA_AUX_DISK_1: restoring archived log
archived log thread=1 sequence=299
channel ORA_AUX_DISK_1: reading from backup piece /u01/backup/orcl_0cvdrk3b_1_1
channel ORA_AUX_DISK_1: piece handle=/u01/backup/orcl_0cvdrk3b_1_1 tag=TAG20201025T105643
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
archived log file name=/u01/auxdest/1_299_1043618822.dbf thread=1 sequence=299
channel clone_default: deleting archived log(s)
archived log file name=/u01/auxdest/1_299_1043618822.dbf RECID=19 STAMP=1054725349
archived log file name=/u01/fra/ORCL/archivelog/2020_10_25/o1_mf_1_300_hs9v7voj_.arc thread=1 sequence=300
media recovery complete, elapsed time: 00:00:01
Finished recover at 2020-OCT-25 11:15:50

database opened

contents of Memory Script:
{
sql clone 'alter pluggable database  PDB1 open';
}
executing Memory Script

sql statement: alter pluggable database  PDB1 open

contents of Memory Script:
{
# create directory for datapump import
sql 'PDB1' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
/u01/auxdest/''";
# create directory for datapump export
sql clone 'PDB1' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
/u01/auxdest/''";
}
executing Memory Script

sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01/auxdest/''

sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01/auxdest/''

Performing export of tables...
   EXPDP> Starting "SYS"."TSPITR_EXP_wszF_etrE":
   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> . . exported "DONGHUA"."C1"                              5.507 KB       1 rows
   EXPDP> Master table "SYS"."TSPITR_EXP_wszF_etrE" successfully loaded/unloaded
   EXPDP> ******************************************************************************
   EXPDP> Dump file set for SYS.TSPITR_EXP_wszF_etrE is:
   EXPDP>   /u01/auxdest/tspitr_wszF_98513.dmp
   EXPDP> Job "SYS"."TSPITR_EXP_wszF_etrE" successfully completed at Sun Oct 25 11:17:14 2020 elapsed 0 00:00:32
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_wszF_Aylg" successfully loaded/unloaded
   IMPDP> Starting "SYS"."TSPITR_IMP_wszF_Aylg":
   IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE
   IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
   IMPDP> . . imported "DONGHUA"."C1_TMP"                          5.507 KB       1 rows
   IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
   IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER
   IMPDP> Job "SYS"."TSPITR_IMP_wszF_Aylg" successfully completed at Sun Oct 25 11:17:38 2020 elapsed 0 00:00:21
Import completed


Removing automatic instance
Automatic instance removed
auxiliary instance file /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_temp_hs9vfmtt_.tmp deleted
auxiliary instance file /u01/auxdest/ORCL/datafile/o1_mf_temp_hs9vfl2k_.tmp deleted
auxiliary instance file /u01/auxdest/WSZF_PITR_PDB1_ORCL/onlinelog/o1_mf_3_hs9vh6mv_.log deleted
auxiliary instance file /u01/auxdest/WSZF_PITR_PDB1_ORCL/onlinelog/o1_mf_2_hs9vh6ld_.log deleted
auxiliary instance file /u01/auxdest/WSZF_PITR_PDB1_ORCL/onlinelog/o1_mf_1_hs9vh6l1_.log deleted
auxiliary instance file /u01/auxdest/WSZF_PITR_PDB1_ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_tbs_c1_hs9vh287_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_sysaux_hs9v8dsv_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/datafile/o1_mf_sysaux_hs9vbqxm_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_undotbs1_hs9v8dsf_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/datafile/o1_mf_undotbs1_hs9vbqz1_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/A885FA20A1DA518FE0530F02000A242D/datafile/o1_mf_system_hs9v8dsy_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/datafile/o1_mf_system_hs9vbqyc_.dbf deleted
auxiliary instance file /u01/auxdest/ORCL/controlfile/o1_mf_hs9v86tl_.ctl deleted
auxiliary instance file tspitr_wszF_98513.dmp deleted
Finished recover at 2020-OCT-25 11:17:39

RMAN> exit


Recovery Manager complete.