Oracle 12.2 came with a new feature , we can simply recover a single table in a database.
In below example we will see how we can restore a table of pluggable database.
Step 1 : Connect to RMAN
[oracle@dbatesting ~]$ rman target /
Recovery Manager: Release 12.2.0.1.0 - Production on Thu Feb 28 20:38:23 2019
Copyright (c) 1982, 2017, Oracle and/or its affiliates. All rights reserved.
connected to target database: TST (DBID=2137075987)
RMAN>
Step 2 : Use following command to recover table I.E. here I have table TEST which I want to restore in TESTPDB pluggable database.
Note : You can give specific SCN until where you want to recover table
RMAN> recover table 'JAGRUTI'.'TEST' of pluggable database TESTPDB
until scn 5434911316
auxiliary destination '/home/appndb'
remap table 'JAGRUTI'.'TEST':'ABC'.'TEST_PREV'
;2> 3> 4> 5>
Starting recover at 28-FEB-19
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=142 device type=DISK
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 TESTPDB:SYSTEM
Tablespace UNDOTBS1
Tablespace TESTPDB:UNDOTBS1
Creating automatic instance, with SID='ugau'
initialization parameters used for automatic instance:
db_name=TST
db_unique_name=ugau_pitr_TESTPDB_TST
compatible=12.2.0
db_block_size=8192
db_files=200
diagnostic_dest=/home/appndb/oracle
_system_trig_enabled=FALSE
sga_target=1520M
processes=200
db_create_file_dest=/home/appndb
log_archive_dest_1='location=/home/appndb'
enable_pluggable_database=true
_clone_one_pdb_recovery=true
#No auxiliary parameter file used
starting up automatic instance TST
Oracle instance started
Total System Global Area 1593835520 bytes
Fixed Size 8793256 bytes
Variable Size 419431256 bytes
Database Buffers 1157627904 bytes
Redo Buffers 7983104 bytes
Automatic instance created
contents of Memory Script:
{
# set requested point in time
set until scn 5434911316;
# 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 28-FEB-19
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=253 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 /home/appndb/oracle/fast_recovery_area/tst/TST/autobackup/2019_02_28/o1_mf_s_1001441352_g7hommfr_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/autobackup/2019_02_28/o1_mf_s_1001441352_g7hommfr_.bkp tag=TAG20190228T180912
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:04
output file name=/home/appndb/TST/controlfile/o1_mf_g7hymdf7_.ctl
Finished restore at 28-FEB-19
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 scn 5434911316;
# 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 /home/appndb/TST/datafile/o1_mf_temp_%u_.tmp in control file
renamed tempfile 3 to /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_temp_%u_.tmp in control file
Starting restore at 28-FEB-19
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 /home/appndb/TST/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00004 to /home/appndb/TST/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00003 to /home/appndb/TST/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/backupset/2019_02_28/o1_mf_nnnd0_TAG20190228T174059_g7hmyn4w_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/backupset/2019_02_28/o1_mf_nnnd0_TAG20190228T174059_g7hmyn4w_.bkp tag=TAG20190228T174059
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:03:16
channel ORA_AUX_DISK_1: starting 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 /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00011 to /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00010 to /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd0_TAG20190228T174059_g7hn0c0c_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd0_TAG20190228T174059_g7hn0c0c_.bkp tag=TAG20190228T174059
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:01:06
Finished restore at 28-FEB-19
datafile 1 switched to datafile copy
input datafile copy RECID=10 STAMP=1001450846 file name=/home/appndb/TST/datafile/o1_mf_system_g7hyn2n8_.dbf
datafile 9 switched to datafile copy
input datafile copy RECID=11 STAMP=1001450846 file name=/home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_system_g7hyt6do_.dbf
datafile 4 switched to datafile copy
input datafile copy RECID=12 STAMP=1001450846 file name=/home/appndb/TST/datafile/o1_mf_undotbs1_g7hyn3tn_.dbf
datafile 11 switched to datafile copy
input datafile copy RECID=13 STAMP=1001450846 file name=/home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_undotbs1_g7hyt68p_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=14 STAMP=1001450846 file name=/home/appndb/TST/datafile/o1_mf_sysaux_g7hyn214_.dbf
datafile 10 switched to datafile copy
input datafile copy RECID=15 STAMP=1001450846 file name=/home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_sysaux_g7hyt64g_.dbf
contents of Memory Script:
{
# set requested point in time
set until scn 5434911316;
# online the datafiles restored or switched
sql clone "alter database datafile 1 online";
sql clone 'TESTPDB' "alter database datafile
9 online";
sql clone "alter database datafile 4 online";
sql clone 'TESTPDB' "alter database datafile
11 online";
sql clone "alter database datafile 3 online";
sql clone 'TESTPDB' "alter database datafile
10 online";
# recover and open database read only
recover clone database tablespace "SYSTEM", "TESTPDB":"SYSTEM", "UNDOTBS1", "TESTPDB":"UNDOTBS1", "SYSAUX", "TESTPDB":"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 28-FEB-19
using channel ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: starting incremental datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: /home/appndb/TST/datafile/o1_mf_system_g7hyn2n8_.dbf
destination for restore of datafile 00004: /home/appndb/TST/datafile/o1_mf_undotbs1_g7hyn3tn_.dbf
destination for restore of datafile 00003: /home/appndb/TST/datafile/o1_mf_sysaux_g7hyn214_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hokyc8_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hokyc8_.bkp tag=TAG20190228T180821
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:03
channel ORA_AUX_DISK_1: starting incremental datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00009: /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_system_g7hyt6do_.dbf
destination for restore of datafile 00011: /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_undotbs1_g7hyt68p_.dbf
destination for restore of datafile 00010: /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_sysaux_g7hyt64g_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hom1gl_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hom1gl_.bkp tag=TAG20190228T180821
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
starting media recovery
archived log for thread 1 with sequence 155 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_155_g7hop936_.arc
archived log for thread 1 with sequence 156 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_156_g7hoqh2w_.arc
archived log for thread 1 with sequence 157 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_157_g7hwrmc4_.arc
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_155_g7hop936_.arc thread=1 sequence=155
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_156_g7hoqh2w_.arc thread=1 sequence=156
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_157_g7hwrmc4_.arc thread=1 sequence=157
media recovery complete, elapsed time: 00:00:14
Finished recover at 28-FEB-19
sql statement: alter database open read only
contents of Memory Script:
{
sql clone 'alter pluggable database TESTPDB open read only';
}
executing Memory Script
sql statement: alter pluggable database TESTPDB 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 =
''/home/appndb/TST/controlfile/o1_mf_g7hymdf7_.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 1593835520 bytes
Fixed Size 8793256 bytes
Variable Size 419431256 bytes
Database Buffers 1157627904 bytes
Redo Buffers 7983104 bytes
sql statement: alter system set control_files = ''/home/appndb/TST/controlfile/o1_mf_g7hymdf7_.ctl'' comment= ''RMAN set'' scope=spfile
Oracle instance shut down
connected to auxiliary database (not started)
Oracle instance started
Total System Global Area 1593835520 bytes
Fixed Size 8793256 bytes
Variable Size 419431256 bytes
Database Buffers 1157627904 bytes
Redo Buffers 7983104 bytes
sql statement: alter database mount clone database
contents of Memory Script:
{
# set requested point in time
set until scn 5434911316;
# set destinations for recovery set and auxiliary set datafiles
set newname for datafile 12 to new;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 12;
switch clone datafile all;
}
executing Memory Script
executing command: SET until clause
executing command: SET NEWNAME
Starting restore at 28-FEB-19
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=244 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 00012 to /home/appndb/UGAU_PITR_TESTPDB_TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_users_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T174059_g7hn22lq_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T174059_g7hn22lq_.bkp tag=TAG20190228T174059
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:15
Finished restore at 28-FEB-19
datafile 12 switched to datafile copy
input datafile copy RECID=23 STAMP=1001451008 file name=/home/appndb/UGAU_PITR_TESTPDB_TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_users_g7hz0sbw_.dbf
contents of Memory Script:
{
# set requested point in time
set until scn 5434911316;
# online the datafiles restored or switched
sql clone 'TESTPDB' "alter database datafile
12 online";
# recover and open resetlogs
recover clone database tablespace "TESTPDB":"USERS", "SYSTEM", "TESTPDB":"SYSTEM", "UNDOTBS1", "TESTPDB":"UNDOTBS1", "SYSAUX", "TESTPDB":"SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 12 online
Starting recover at 28-FEB-19
using channel ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: starting incremental datafile backup set restore
channel ORA_AUX_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00012: /home/appndb/UGAU_PITR_TESTPDB_TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_users_g7hz0sbw_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hom1gl_.bkp
channel ORA_AUX_DISK_1: piece handle=/home/appndb/oracle/fast_recovery_area/tst/TST/7DED35A7E9A219E1E0538001A8C0AA01/backupset/2019_02_28/o1_mf_nnnd1_TAG20190228T180821_g7hom1gl_.bkp tag=TAG20190228T180821
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:01
starting media recovery
archived log for thread 1 with sequence 155 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_155_g7hop936_.arc
archived log for thread 1 with sequence 156 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_156_g7hoqh2w_.arc
archived log for thread 1 with sequence 157 is already on disk as file /home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_157_g7hwrmc4_.arc
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_155_g7hop936_.arc thread=1 sequence=155
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_156_g7hoqh2w_.arc thread=1 sequence=156
archived log file name=/home/appndb/oracle/fast_recovery_area/tst/TST/archivelog/2019_02_28/o1_mf_1_157_g7hwrmc4_.arc thread=1 sequence=157
media recovery complete, elapsed time: 00:00:01
Finished recover at 28-FEB-19
database opened
contents of Memory Script:
{
sql clone 'alter pluggable database TESTPDB open';
}
executing Memory Script
sql statement: alter pluggable database TESTPDB open
contents of Memory Script:
{
# create directory for datapump import
sql 'TESTPDB' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
/home/appndb''";
# create directory for datapump export
sql clone 'TESTPDB' "create or replace directory
TSPITR_DIROBJ_DPDIR as ''
/home/appndb''";
}
executing Memory Script
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/home/appndb''
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/home/appndb''
Performing export of tables...
EXPDP> Starting "SYS"."TSPITR_EXP_ugau_bmlo":
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 "JAGRUTI"."TEST":"P3" 5.5 KB 2 rows
EXPDP> . . exported "JAGRUTI"."TEST":"P2" 5.484 KB 1 rows
EXPDP> . . exported "JAGRUTI"."TEST":"P1" 5.5 KB 2 rows
EXPDP> Master table "SYS"."TSPITR_EXP_ugau_bmlo" successfully loaded/unloaded
EXPDP> ******************************************************************************
EXPDP> Dump file set for SYS.TSPITR_EXP_ugau_bmlo is:
EXPDP> /home/appndb/tspitr_ugau_44462.dmp
EXPDP> Job "SYS"."TSPITR_EXP_ugau_bmlo" successfully completed at Thu Feb 28 20:52:16 2019 elapsed 0 00:00:49
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_ugau_dswc" successfully loaded/unloaded
IMPDP> Starting "SYS"."TSPITR_IMP_ugau_dswc":
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE
IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
IMPDP> . . imported "ABC"."TEST_PREV":"P3" 5.5 KB 2 rows
IMPDP> . . imported "ABC"."TEST_PREV":"P2" 5.484 KB 1 rows
IMPDP> . . imported "ABC"."TEST_PREV":"P1" 5.5 KB 2 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_ugau_dswc" successfully completed at Thu Feb 28 20:52:39 2019 elapsed 0 00:00:18
Import completed
Removing automatic instance
Automatic instance removed
auxiliary instance file /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_temp_g7hyxpng_.tmp deleted
auxiliary instance file /home/appndb/TST/datafile/o1_mf_temp_g7hywz8l_.tmp deleted
auxiliary instance file /home/appndb/UGAU_PITR_TESTPDB_TST/onlinelog/o1_mf_3_g7hz1dby_.log deleted
auxiliary instance file /home/appndb/UGAU_PITR_TESTPDB_TST/onlinelog/o1_mf_2_g7hz1dbo_.log deleted
auxiliary instance file /home/appndb/UGAU_PITR_TESTPDB_TST/onlinelog/o1_mf_1_g7hz1dbd_.log deleted
auxiliary instance file /home/appndb/UGAU_PITR_TESTPDB_TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_users_g7hz0sbw_.dbf deleted
auxiliary instance file /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_sysaux_g7hyt64g_.dbf deleted
auxiliary instance file /home/appndb/TST/datafile/o1_mf_sysaux_g7hyn214_.dbf deleted
auxiliary instance file /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_undotbs1_g7hyt68p_.dbf deleted
auxiliary instance file /home/appndb/TST/datafile/o1_mf_undotbs1_g7hyn3tn_.dbf deleted
auxiliary instance file /home/appndb/TST/7DED35A7E9A219E1E0538001A8C0AA01/datafile/o1_mf_system_g7hyt6do_.dbf deleted
auxiliary instance file /home/appndb/TST/datafile/o1_mf_system_g7hyn2n8_.dbf deleted
auxiliary instance file /home/appndb/TST/controlfile/o1_mf_g7hymdf7_.ctl deleted
auxiliary instance file tspitr_ugau_44462.dmp deleted
Finished recover at 28-FEB-19
RMAN>
Thank you for giving your valuable time to read the above information.
If you want to be updated with all our articles send us the Invitation or Follow us:
Telegram Channel: https://t.me/helporacle
Skant Gupta’s LinkedIn: www.linkedin.com/in/skantali/
Joel Perez’s LinkedIn: Joel Perez’s Profile
LinkedIn Group: Oracle Cloud DBAAS
Facebook Page: OracleHelp