Oracle EE 12c introduced the ability to restore an Oracle table from an RMAN backup, so a logical table restore to any point in time from a physical RMAN backup.
Under the covers
- Oracle stands up a Temporary Database Instance
- RMAN restores the PDB or Non CDB tablespaces to an auxiliary location we specify for:
- SYSTEM
- UNDO
- SYSAUX
- Application tablespace containing table we want to restore
- RMAN recovers restore tablespaces to desired Point in Time
- Datapump
- creates DIRECTORY to Auxiliary space we specify
- exports table we want to restore
- imports table we want to restore
- Cleans up
- stops temporary instance
- removes restored datafiles
- removes datapump export
Lets walk through an example
check database compatible is at least 12.0.0 and in archivelog mode
sqlplus / as sysdba
show parameter compatible
archive log list
Check space available to accommodate a restore and create a directory to hold files created during restore
mkdir H:\TABLE_RESTORE_TEST
We need an oracle RMAN level 0 backup to use as basis of our recovery, if this is not in place take a backup now, though it assumed this would be in place already if needed for a real recovery.
rman target /
backup incremental level 0 database plus archivelog;
Lets create a schema and table which we will later recover
connect to pdb
sqlplus /@orclpdb as sysdba
Create new schema for test
create user test identified by oracle123 default tablespace users
quota unlimited on users;
create table test.source_table as select * from all_objects;
select count(*) from test.source_table;
capture current time or SCN so we can use this for restore
select to_char(sysdate, 'DD-MON-YYYY HH24:MI:SS') from dual;
TO_CHAR(SYSDATE,'DD
-------------------
08-APR-2025 15:02:03
Not lets truncate the table so we can attempt to restore it using RMAN
truncate table test.source_table;
select count(*) from test.source_table;
Take an rman incremental backup so we know that the table data will be present on a backup.
rman target /
backup incremental level 1 database plus archivelog;
Use RMAN to restore and import the table in one single command:
Syntax we will use will be as below:
recover table “<owner>”.”<source table>” of pluggable database <pdbname> until TIME “TO_DATE(<date clause>, ‘DD-MON-YYYY HH24:MI:SS’)”
auxiliary destination ‘<restore location>’ REMAP TABLE ‘<owner>’.'<source table>’:'<restored table’;
rman target /
recover table "TEST"."SOURCE_TABLE" of pluggable database orclpdb until TIME "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')"
auxiliary destination 'H:\TABLE_RESTORE_TEST' REMAP TABLE 'TEST'.'SOURCE_TABLE':'RESTORED_TABLE';
See output at end of this detailing all of the steps Oracle performs with this one command.
We can now view the restore table and repopulate the truncated table
sqlplus /@orclpdb as sysdba
select count(*) from test.SOURCE_TABLE;
select count(*) from test.RESTORED_TABLE;
insert into test.SOURCE_TABLE select * from test.RESTORED_TABLE;
commit;
Output from RMAN table recover command:
RMAN> recover table "TEST"."SOURCE_TABLE" of pluggable database orclpdb until TIME "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')"
recover table "TEST"."SOURCE_TABLE" of pluggable database orclpdb until TIME "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')"
2> auxiliary destination 'H:\TABLE_RESTORE_TEST' REMAP TABLE 'TEST'.'SOURCE_TABLE':'RESTORED_TABLE';
auxiliary destination 'H:\TABLE_RESTORE_TEST' REMAP TABLE 'TEST'.'SOURCE_TABLE':'RESTORED_TABLE';
Starting recover at 08-APR-25
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 ORCLPDB:SYSTEM
Tablespace UNDOTBS1
Tablespace ORCLPDB:UNDOTBS1
Creating automatic instance, with SID='jhzd'
initialization parameters used for automatic instance:
db_name=ORCLEE
db_unique_name=jhzd_pitr_orclpdb_ORCLEE
compatible=19.0.0
db_block_size=8192
db_files=200
diagnostic_dest=E:\ORACLE\APP\19CEE
_pdb_name_case_sensitive=false
_system_trig_enabled=FALSE
sga_target=8192M
processes=200
db_create_file_dest=H:\TABLE_RESTORE_TEST
log_archive_dest_1='location=H:\TABLE_RESTORE_TEST'
enable_pluggable_database=true
_clone_one_pdb_recovery=true
#No auxiliary parameter file used
starting up automatic instance ORCLEE
Oracle instance started
Total System Global Area 8589930928 bytes
Fixed Size 14066096 bytes
Variable Size 1426063360 bytes
Database Buffers 7130316800 bytes
Redo Buffers 19484672 bytes
Automatic instance created
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY 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 08-APR-25
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=45 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 G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\AUTOBACKUP\2025_04_08\O1_MF_S_1197903423_MZBBSJD3_.BKP
channel ORA_AUX_DISK_1: piece handle=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\AUTOBACKUP\2025_04_08\O1_MF_S_1197903423_MZBBSJD3_.BKP tag=TAG20250408T145703
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
output file name=H:\TABLE_RESTORE_TEST\ORCLEE\CONTROLFILE\O1_MF_MZBCYWC6_.CTL
Finished restore at 08-APR-25
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('08-APR-2025 15:02:03', 'DD-MON-YYYY 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 8 to new;
set newname for clone datafile 5 to new;
set newname for clone datafile 10 to new;
set newname for clone datafile 3 to new;
set newname for clone datafile 9 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, 8, 5, 10, 3, 9;
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 H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_TEMP_%U_.TMP in control file
renamed tempfile 3 to H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_TEMP_%U_.TMP in control file
Starting restore at 08-APR-25
using channel ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: starting datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_AUX_DISK_1: restoring datafile 00001 to H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSTEM_%U_.DBF
channel ORA_AUX_DISK_1: restoring datafile 00005 to H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_UNDOTBS1_%U_.DBF
channel ORA_AUX_DISK_1: restoring datafile 00003 to H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSAUX_%U_.DBF
channel ORA_AUX_DISK_1: reading from backup piece G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRH7P_.BKP
channel ORA_AUX_DISK_1: piece handle=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRH7P_.BKP tag=TAG20250408T145630
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00: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 00008 to H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSTEM_%U_.DBF
channel ORA_AUX_DISK_1: restoring datafile 00010 to H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_UNDOTBS1_%U_.DBF
channel ORA_AUX_DISK_1: restoring datafile 00009 to H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSAUX_%U_.DBF
channel ORA_AUX_DISK_1: reading from backup piece G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRZ2B_.BKP
channel ORA_AUX_DISK_1: piece handle=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRZ2B_.BKP tag=TAG20250408T145630
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:08
Finished restore at 08-APR-25
datafile 1 switched to datafile copy
input datafile copy RECID=7 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSTEM_MZBCZ4PG_.DBF
datafile 8 switched to datafile copy
input datafile copy RECID=8 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSTEM_MZBCZN25_.DBF
datafile 5 switched to datafile copy
input datafile copy RECID=9 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_UNDOTBS1_MZBCZ4SD_.DBF
datafile 10 switched to datafile copy
input datafile copy RECID=10 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_UNDOTBS1_MZBCZN52_.DBF
datafile 3 switched to datafile copy
input datafile copy RECID=11 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSAUX_MZBCZ4QX_.DBF
datafile 9 switched to datafile copy
input datafile copy RECID=12 STAMP=1197904651 file name=H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSAUX_MZBCZN3P_.DBF
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile 1 online";
sql clone 'ORCLPDB' "alter database datafile
8 online";
sql clone "alter database datafile 5 online";
sql clone 'ORCLPDB' "alter database datafile
10 online";
sql clone "alter database datafile 3 online";
sql clone 'ORCLPDB' "alter database datafile
9 online";
# recover and open database read only
recover clone database tablespace "SYSTEM", "ORCLPDB":"SYSTEM", "UNDOTBS1", "ORCLPDB":"UNDOTBS1", "SYSAUX", "ORCLPDB":"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 8 online
sql statement: alter database datafile 5 online
sql statement: alter database datafile 10 online
sql statement: alter database datafile 3 online
sql statement: alter database datafile 9 online
Starting recover at 08-APR-25
using channel ORA_AUX_DISK_1
Executing: alter database datafile 7 offline
Executing: alter database datafile 2, 4, 6 offline
Executing: alter database datafile 11 offline
starting media recovery
archived log for thread 1 with sequence 25 is already on disk as file G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_25_MZBBSFRS_.ARC
archived log for thread 1 with sequence 26 is already on disk as file G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_26_MZBCF2S5_.ARC
archived log file name=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_25_MZBBSFRS_.ARC thread=1 sequence=25
archived log file name=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_26_MZBCF2S5_.ARC thread=1 sequence=26
media recovery complete, elapsed time: 00:00:02
Finished recover at 08-APR-25
sql statement: alter database open read only
contents of Memory Script:
{
sql clone 'alter pluggable database ORCLPDB open read only';
}
executing Memory Script
sql statement: alter pluggable database ORCLPDB 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 =
''H:\TABLE_RESTORE_TEST\ORCLEE\CONTROLFILE\O1_MF_MZBCYWC6_.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 8589930928 bytes
Fixed Size 14066096 bytes
Variable Size 1426063360 bytes
Database Buffers 7130316800 bytes
Redo Buffers 19484672 bytes
sql statement: alter system set control_files = ''H:\TABLE_RESTORE_TEST\ORCLEE\CONTROLFILE\O1_MF_MZBCYWC6_.CTL'' comment= ''RMAN set'' scope=spfile
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 8589930928 bytes
Fixed Size 14066096 bytes
Variable Size 1426063360 bytes
Database Buffers 7130316800 bytes
Redo Buffers 19484672 bytes
sql statement: alter database mount clone database
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')";
# set destinations for recovery set and auxiliary set datafiles
set newname for datafile 11 to new;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 11;
switch clone datafile all;
}
executing Memory Script
executing command: SET until clause
executing command: SET NEWNAME
Starting restore at 08-APR-25
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=45 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 00011 to H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_USERS_%U_.DBF
channel ORA_AUX_DISK_1: reading from backup piece G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRZ2B_.BKP
channel ORA_AUX_DISK_1: piece handle=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\BACKUPSET\2025_04_08\O1_MF_NNND0_TAG20250408T145630_MZBBRZ2B_.BKP tag=TAG20250408T145630
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 08-APR-25
datafile 11 switched to datafile copy
input datafile copy RECID=14 STAMP=1197904828 file name=H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_USERS_MZBD5C9H_.DBF
contents of Memory Script:
{
# set requested point in time
set until time "TO_DATE('08-APR-2025 15:02:03', 'DD-MON-YYYY HH24:MI:SS')";
# online the datafiles restored or switched
sql clone 'ORCLPDB' "alter database datafile
11 online";
# recover and open resetlogs
recover clone database tablespace "ORCLPDB":"USERS", "SYSTEM", "ORCLPDB":"SYSTEM", "UNDOTBS1", "ORCLPDB":"UNDOTBS1", "SYSAUX", "ORCLPDB":"SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 11 online
Starting recover at 08-APR-25
using channel ORA_AUX_DISK_1
Executing: alter database datafile 7 offline
Executing: alter database datafile 2, 4, 6 offline
starting media recovery
archived log for thread 1 with sequence 25 is already on disk as file G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_25_MZBBSFRS_.ARC
archived log for thread 1 with sequence 26 is already on disk as file G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_26_MZBCF2S5_.ARC
archived log file name=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_25_MZBBSFRS_.ARC thread=1 sequence=25
archived log file name=G:\ORACLE\FAST_RECOVERY_AREA\ORCLEE\ARCHIVELOG\2025_04_08\O1_MF_1_26_MZBCF2S5_.ARC thread=1 sequence=26
media recovery complete, elapsed time: 00:00:03
Finished recover at 08-APR-25
database opened
contents of Memory Script:
{
sql clone 'alter pluggable database ORCLPDB open';
}
executing Memory Script
sql statement: alter pluggable database ORCLPDB open
contents of Memory Script:
{
# create directory for datapump import
sql 'ORCLPDB' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
H:\TABLE_RESTORE_TEST''";
# create directory for datapump export
sql clone 'ORCLPDB' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
H:\TABLE_RESTORE_TEST''";
}
executing Memory Script
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''H:\TABLE_RESTORE_TEST''
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''H:\TABLE_RESTORE_TEST''
Performing export of tables...
EXPDP> Starting "SYS"."TSPITR_EXP_jhzd_kgtv":
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 "TEST"."SOURCE_TABLE" 8.359 MB 63192 rows
EXPDP> Master table "SYS"."TSPITR_EXP_jhzd_kgtv" successfully loaded/unloaded
EXPDP> ******************************************************************************
EXPDP> Dump file set for SYS.TSPITR_EXP_jhzd_kgtv is:
EXPDP> H:\TABLE_RESTORE_TEST\TSPITR_JHZD_23051.DMP
EXPDP> Job "SYS"."TSPITR_EXP_jhzd_kgtv" successfully completed at Tue Apr 8 15:32:14 2025 elapsed 0 00:00:53
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_jhzd_xoux" successfully loaded/unloaded
IMPDP> Starting "SYS"."TSPITR_IMP_jhzd_xoux":
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
IMPDP> . . imported "TEST"."RESTORED_TABLE" 8.359 MB 63192 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_jhzd_xoux" successfully completed at Tue Apr 8 15:33:26 2025 elapsed 0 00:00:45
Import completed
Removing automatic instance
Automatic instance removed
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_TEMP_MZBD08XR_.TMP deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_TEMP_MZBD05BQ_.TMP deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\ONLINELOG\O1_MF_3_MZBD5PDG_.LOG deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\ONLINELOG\O1_MF_2_MZBD5PCZ_.LOG deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\ONLINELOG\O1_MF_1_MZBD5P9Z_.LOG deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\JHZD_PITR_ORCLPDB_ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_USERS_MZBD5C9H_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSAUX_MZBCZN3P_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSAUX_MZBCZ4QX_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_UNDOTBS1_MZBCZN52_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_UNDOTBS1_MZBCZ4SD_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\E8E792144CD24A9AA7231AF9AB1FDFAA\DATAFILE\O1_MF_SYSTEM_MZBCZN25_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\DATAFILE\O1_MF_SYSTEM_MZBCZ4PG_.DBF deleted
auxiliary instance file H:\TABLE_RESTORE_TEST\ORCLEE\CONTROLFILE\O1_MF_MZBCYWC6_.CTL deleted
auxiliary instance file tspitr_jhzd_23051.dmp deleted
Finished recover at 08-APR-25
RMAN>