Oracle version : 11.2.0.1.0 Enterprise Edition
OS : Rhel 6.4
Database Name : orcl
Tablespace Name : TESTTBS
A user reported a table named "TSPITR" was accidentally dropped . There was no flashback enabled on this
database and the recyclebin too was purged out. As a result, the table could not be recovered using
flashback method. The other methods to recover the dropped table would be:
Using Tablespace Point In Time Recovery. Here, the tablespace associate with the table that is dropped
would be recovered until the time. The main disadvantage of this method is that any other successful
transactions that were carried out on this tablespace after the time the
table was dropped, would be lost when you do a point in time recovery.
Here we are trying to create the same scenario by creating and dropping the table TSPITR.
sqlplus soumya/soumya
SQL> create table xyz (id number);
SQL> insert into xyz values (1);
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created
SQL> commit;
First lets find out the tablespace where the table resides:-
SQL> select table_name ,tablespace_name from user_tables where table_name ='XYZ';
TABLE_NAME TABLESPACE_NAME
------------------------------ ------------------------------
XYZ TESTTBS
SQL> SELECT * FROM xyz;
ID
----------
1
1
1
1
1
1
SQL> select to_char(sysdate,'DD-MON-YYYY HH24:MI:SS') from dual;
TO_CHAR(SYSDATE,'DD-MON-YYYYH
-----------------------------
20-SEP-2014 07:22:29
*Make sure that you have a valid RMAN level 0 backup to proceed.
Now lets drop the table and purge recyclebin too.
SQL> drop table xyz;
Table dropped.
SQL> purge recyclebin;
Recyclebin purged.
SQL> select * from xyz;
select * from xyz
*
ERROR at line 1:
ORA-00942: table or view does not exist
Now We will perform the tablespace point in time recovery until the time before the table was dropped.
For TSPITR, we need to specify the auxiliary destination where RMAN would create a temporary database
by restoring the controlfile, SYSTEM tablespace, UNDO tablespace, SYSAUX tablespace and finally the
tablespace that needs to be recovered.Once the temporary database is restored and recovered, RMAN
automatically exports the contents of tablespace to be recovered from the temproary tablespace to a dump
file and imports this dump into the Target(Main) database where the table was dropped.
[oracle@server2 ORCL]$ RMAN> run
2> {
3> recover tablespace TESTTBS until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')" auxiliary destination '/u01';
4> };
Starting recover at 20-SEP-14
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=29 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 UNDOTBS1
Creating automatic instance, with SID='DFCz'
initialization parameters used for automatic instance:
db_name=ORCL
db_unique_name=DFCz_tspitr_ORCL
compatible=11.2.0.0.0
db_block_size=8192
db_files=200
sga_target=280M
processes=50
db_create_file_dest=/u01
log_archive_dest_1='location=/u01'
#No auxiliary parameter file used
starting up automatic instance ORCL
Oracle instance started
Total System Global Area 292278272 bytes
Fixed Size 2212736 bytes
Variable Size 100666496 bytes
Database Buffers 184549376 bytes
Redo Buffers 4849664 bytes
Automatic instance created
Running TRANSPORT_SET_CHECK on recovery set tablespaces
TRANSPORT_SET_CHECK completed successfully
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','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';
# avoid unnecessary autobackups for structural changes during TSPITR
sql 'begin dbms_backup_restore.AutoBackupFlag(FALSE); end;';
}
executing Memory Script
executing command: SET until clause
Starting restore at 20-SEP-14
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=19 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/backups/rman_backup/full_backup/200914_071833/control_ORCL_c-1366623577-20140920-08
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_071833/control_ORCL_c-1366623577-20140920-08 tag=TAG20140920T072109
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/ORCL/controlfile/o1_mf_b1sqnht0_.ctl
Finished restore at 20-SEP-14
sql statement: alter database mount clone database
sql statement: alter system archive log current
sql statement: begin dbms_backup_restore.AutoBackupFlag(FALSE); end;
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')";
plsql <<<-- tspitr_2
declare
sqlstatement varchar2(512);
offline_not_needed exception;
pragma exception_init(offline_not_needed, -01539);
begin
sqlstatement := 'alter tablespace '|| 'TESTTBS' ||' offline immediate';
krmicd.writeMsg(6162, sqlstatement);
krmicd.execSql(sqlstatement);
exception
when offline_not_needed then
null;
end; >>>;
# set destinations for recovery set and auxiliary set datafiles
set newname for clone datafile 1 to new;
set newname for clone datafile 3 to new;
set newname for clone datafile 2 to new;
set newname for clone tempfile 1 to new;
set newname for datafile 8 to
"/u01/app/oracle/oradata/orcl/testtbs.dbf";
# switch all tempfiles
switch clone tempfile all;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 1, 3, 2, 8;
switch clone datafile all;
}
executing Memory Script
executing command: SET until clause
sql statement: alter tablespace TESTTBS offline immediate
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/ORCL/datafile/o1_mf_temp_%u_.tmp in control file
Starting restore at 20-SEP-14
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 00002 to /u01/ORCL/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/full_backup/200914_065249/full_ORCL_20140920_858754372_17_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_065249/full_ORCL_20140920_858754372_17_1 tag=TAG20140920T065252
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:35
channel ORA_AUX_DISK_1: starting 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/ORCL/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/ORCL/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00008 to /u01/app/oracle/oradata/orcl/testtbs.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/full_backup/200914_071833/full_ORCL_20140920_858755915_24_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_071833/full_ORCL_20140920_858755915_24_1 tag=TAG20140920T071834
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:56
Finished restore at 20-SEP-14
datafile 1 switched to datafile copy
input datafile copy RECID=5 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_system_b1sqot67_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=6 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_undotbs1_b1sqot9h_.dbf
datafile 2 switched to datafile copy
input datafile copy RECID=7 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile 1 online";
sql clone "alter database datafile 3 online";
sql clone "alter database datafile 2 online";
sql clone "alter database datafile 8 online";
# recover and open resetlogs
recover clone database tablespace "TESTTBS", "SYSTEM", "UNDOTBS1", "SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 1 online
sql statement: alter database datafile 3 online
sql statement: alter database datafile 2 online
sql statement: alter database datafile 8 online
Starting recover at 20-SEP-14
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 00002: /u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/inc_level_1/200914_071502/inc_level_1_ORCL_20140920_858755714_21_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/inc_level_1/200914_071502/inc_level_1_ORCL_20140920_858755714_21_1 tag=TAG20140920T071513
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 18 is already on disk as file /u01/1_18_838842842.dbf
archived log for thread 1 with sequence 19 is already on disk as file /u01/1_19_838842842.dbf
archived log for thread 1 with sequence 20 is already on disk as file /u01/1_20_838842842.dbf
archived log file name=/u01/1_18_838842842.dbf thread=1 sequence=18
archived log file name=/u01/1_19_838842842.dbf thread=1 sequence=19
archived log file name=/u01/1_20_838842842.dbf thread=1 sequence=20
media recovery complete, elapsed time: 00:00:00
Finished recover at 20-SEP-14
database opened
contents of Memory Script:
{
# make read only the tablespace that will be exported
sql clone 'alter tablespace TESTTBS read only';
# create directory for datapump import
sql "create or replace directory TSPITR_DIROBJ_DPDIR as ''
/u01''";
# create directory for datapump export
sql clone "create or replace directory TSPITR_DIROBJ_DPDIR as ''
/u01''";
}
executing Memory Script
sql statement: alter tablespace TESTTBS read only
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01''
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01''
Performing export of metadata...
EXPDP> Starting "SYS"."TSPITR_EXP_DFCz":
EXPDP> Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
EXPDP> Processing object type TRANSPORTABLE_EXPORT/TABLE
EXPDP> Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
EXPDP> Master table "SYS"."TSPITR_EXP_DFCz" successfully loaded/unloaded
EXPDP> ******************************************************************************
EXPDP> Dump file set for SYS.TSPITR_EXP_DFCz is:
EXPDP> /u01/tspitr_DFCz_62260.dmp
EXPDP> ******************************************************************************
EXPDP> Datafiles required for transportable tablespace TESTTBS:
EXPDP> /u01/app/oracle/oradata/orcl/testtbs.dbf
EXPDP> Job "SYS"."TSPITR_EXP_DFCz" successfully completed at 07:28:42
Export completed
contents of Memory Script:
{
# shutdown clone before import
shutdown clone immediate
# drop target tablespaces before importing them back
sql 'drop tablespace TESTTBS including contents keep datafiles';
}
executing Memory Script
database closed
database dismounted
Oracle instance shut down
sql statement: drop tablespace TESTTBS including contents keep datafiles
Performing import of metadata...
IMPDP> Master table "SYS"."TSPITR_IMP_DFCz" successfully loaded/unloaded
IMPDP> Starting "SYS"."TSPITR_IMP_DFCz":
IMPDP> Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
IMPDP> Processing object type TRANSPORTABLE_EXPORT/TABLE
IMPDP> Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
IMPDP> Job "SYS"."TSPITR_IMP_DFCz" successfully completed at 07:29:27
Import completed
contents of Memory Script:
{
# make read write and offline the imported tablespaces
sql 'alter tablespace TESTTBS read write';
sql 'alter tablespace TESTTBS offline';
# enable autobackups after TSPITR is finished
sql 'begin dbms_backup_restore.AutoBackupFlag(TRUE); end;';
}
executing Memory Script
sql statement: alter tablespace TESTTBS read write
sql statement: alter tablespace TESTTBS offline
sql statement: begin dbms_backup_restore.AutoBackupFlag(TRUE); end;
Removing automatic instance
Automatic instance removed
auxiliary instance file /u01/ORCL/datafile/o1_mf_temp_b1sqqxbb_.tmp deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_3_b1sqqsvf_.log deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_2_b1sqqql5_.log deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_1_b1sqqo4d_.log deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_undotbs1_b1sqot9h_.dbf deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_system_b1sqot67_.dbf deleted
auxiliary instance file /u01/ORCL/controlfile/o1_mf_b1sqnht0_.ctl deleted
Finished recover at 20-SEP-14
Once the import is done successfully, RMAN automatically deletes the temporary database that it had
created earlier.Now, lets connect to the main database and check if we are able to access the dropped
table. But, before that, we need to bring the tablespace online.
SQL> set linesize 100
SQL> col name for a60
SQL> select name,status from v$datafile;
NAME STATUS
------------------------------------------------------------ -------
/u01/app/oracle/oradata/orcl/system01.dbf SYSTEM
/u01/app/oracle/oradata/orcl/sysaux01.dbf ONLINE
/u01/app/oracle/oradata/orcl/undotbs01.dbf ONLINE
/u01/app/oracle/oradata/orcl/users01.dbf ONLINE
/u01/app/oracle/oradata/orcl/example01.dbf ONLINE
/u01/app/oracle/oradata/orcl/TS_HYBRIS_DATA.dbf OFFLINE
/u01/app/oracle/oradata/orcl/TS_HYBRIS_INDEX.dbf ONLINE
/u01/app/oracle/oradata/orcl/testtbs.dbf OFFLINE
8 rows selected.
SQL> select tablespace_name,status from dba_tablespaces;
TABLESPACE_NAME STATUS
------------------------------ ---------
SYSTEM ONLINE
SYSAUX ONLINE
UNDOTBS1 ONLINE
TEMP ONLINE
USERS ONLINE
EXAMPLE ONLINE
TS_HYBRIS_DATA OFFLINE
TS_HYBRIS_INDEX ONLINE
TESTTBS OFFLINE
We can notice that the tablespace TESTTBS and TS_HYBRIS_DATA are offline. Before proceeding, this
tablespaces needs to be made online.
QL> alter tablespace TS_HYBRIS_DATA online;
Tablespace altered.
SQL> alter tablespace testtbs online;
Tablespace altered.
SQL> select tablespace_name,status from dba_tablespaces;
TABLESPACE_NAME STATUS
------------------------------ ---------
SYSTEM ONLINE
SYSAUX ONLINE
UNDOTBS1 ONLINE
TEMP ONLINE
USERS ONLINE
EXAMPLE ONLINE
TS_HYBRIS_DATA ONLINE
TS_HYBRIS_INDEX ONLINE
TESTTBS ONLINE
SQL> conn soumya/soumya;
Connected.
SQL> SELECT * FROM xyz;
ID
----------
1
1
1
1
1
1
Finally we can see the dropped table is back with its data inside it.
Please share your ideas and opinions about this topic. If you like this post, then please share with others. Please subscribe on email for every updates on mail.
OS : Rhel 6.4
Database Name : orcl
Tablespace Name : TESTTBS
A user reported a table named "TSPITR" was accidentally dropped . There was no flashback enabled on this
database and the recyclebin too was purged out. As a result, the table could not be recovered using
flashback method. The other methods to recover the dropped table would be:
Using Tablespace Point In Time Recovery. Here, the tablespace associate with the table that is dropped
would be recovered until the time. The main disadvantage of this method is that any other successful
transactions that were carried out on this tablespace after the time the
table was dropped, would be lost when you do a point in time recovery.
Here we are trying to create the same scenario by creating and dropping the table TSPITR.
sqlplus soumya/soumya
SQL> create table xyz (id number);
SQL> insert into xyz values (1);
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created.
SQL> /
1 row created
SQL> commit;
First lets find out the tablespace where the table resides:-
SQL> select table_name ,tablespace_name from user_tables where table_name ='XYZ';
TABLE_NAME TABLESPACE_NAME
------------------------------ ------------------------------
XYZ TESTTBS
SQL> SELECT * FROM xyz;
ID
----------
1
1
1
1
1
1
SQL> select to_char(sysdate,'DD-MON-YYYY HH24:MI:SS') from dual;
TO_CHAR(SYSDATE,'DD-MON-YYYYH
-----------------------------
20-SEP-2014 07:22:29
*Make sure that you have a valid RMAN level 0 backup to proceed.
Now lets drop the table and purge recyclebin too.
SQL> drop table xyz;
Table dropped.
SQL> purge recyclebin;
Recyclebin purged.
SQL> select * from xyz;
select * from xyz
*
ERROR at line 1:
ORA-00942: table or view does not exist
Now We will perform the tablespace point in time recovery until the time before the table was dropped.
For TSPITR, we need to specify the auxiliary destination where RMAN would create a temporary database
by restoring the controlfile, SYSTEM tablespace, UNDO tablespace, SYSAUX tablespace and finally the
tablespace that needs to be recovered.Once the temporary database is restored and recovered, RMAN
automatically exports the contents of tablespace to be recovered from the temproary tablespace to a dump
file and imports this dump into the Target(Main) database where the table was dropped.
[oracle@server2 ORCL]$ RMAN> run
2> {
3> recover tablespace TESTTBS until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')" auxiliary destination '/u01';
4> };
Starting recover at 20-SEP-14
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=29 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 UNDOTBS1
Creating automatic instance, with SID='DFCz'
initialization parameters used for automatic instance:
db_name=ORCL
db_unique_name=DFCz_tspitr_ORCL
compatible=11.2.0.0.0
db_block_size=8192
db_files=200
sga_target=280M
processes=50
db_create_file_dest=/u01
log_archive_dest_1='location=/u01'
#No auxiliary parameter file used
starting up automatic instance ORCL
Oracle instance started
Total System Global Area 292278272 bytes
Fixed Size 2212736 bytes
Variable Size 100666496 bytes
Database Buffers 184549376 bytes
Redo Buffers 4849664 bytes
Automatic instance created
Running TRANSPORT_SET_CHECK on recovery set tablespaces
TRANSPORT_SET_CHECK completed successfully
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','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';
# avoid unnecessary autobackups for structural changes during TSPITR
sql 'begin dbms_backup_restore.AutoBackupFlag(FALSE); end;';
}
executing Memory Script
executing command: SET until clause
Starting restore at 20-SEP-14
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=19 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/backups/rman_backup/full_backup/200914_071833/control_ORCL_c-1366623577-20140920-08
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_071833/control_ORCL_c-1366623577-20140920-08 tag=TAG20140920T072109
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/ORCL/controlfile/o1_mf_b1sqnht0_.ctl
Finished restore at 20-SEP-14
sql statement: alter database mount clone database
sql statement: alter system archive log current
sql statement: begin dbms_backup_restore.AutoBackupFlag(FALSE); end;
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')";
plsql <<<-- tspitr_2
declare
sqlstatement varchar2(512);
offline_not_needed exception;
pragma exception_init(offline_not_needed, -01539);
begin
sqlstatement := 'alter tablespace '|| 'TESTTBS' ||' offline immediate';
krmicd.writeMsg(6162, sqlstatement);
krmicd.execSql(sqlstatement);
exception
when offline_not_needed then
null;
end; >>>;
# set destinations for recovery set and auxiliary set datafiles
set newname for clone datafile 1 to new;
set newname for clone datafile 3 to new;
set newname for clone datafile 2 to new;
set newname for clone tempfile 1 to new;
set newname for datafile 8 to
"/u01/app/oracle/oradata/orcl/testtbs.dbf";
# switch all tempfiles
switch clone tempfile all;
# restore the tablespaces in the recovery set and the auxiliary set
restore clone datafile 1, 3, 2, 8;
switch clone datafile all;
}
executing Memory Script
executing command: SET until clause
sql statement: alter tablespace TESTTBS offline immediate
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/ORCL/datafile/o1_mf_temp_%u_.tmp in control file
Starting restore at 20-SEP-14
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 00002 to /u01/ORCL/datafile/o1_mf_sysaux_%u_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/full_backup/200914_065249/full_ORCL_20140920_858754372_17_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_065249/full_ORCL_20140920_858754372_17_1 tag=TAG20140920T065252
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:35
channel ORA_AUX_DISK_1: starting 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/ORCL/datafile/o1_mf_system_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00003 to /u01/ORCL/datafile/o1_mf_undotbs1_%u_.dbf
channel ORA_AUX_DISK_1: restoring datafile 00008 to /u01/app/oracle/oradata/orcl/testtbs.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/full_backup/200914_071833/full_ORCL_20140920_858755915_24_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/full_backup/200914_071833/full_ORCL_20140920_858755915_24_1 tag=TAG20140920T071834
channel ORA_AUX_DISK_1: restored backup piece 1
channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:56
Finished restore at 20-SEP-14
datafile 1 switched to datafile copy
input datafile copy RECID=5 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_system_b1sqot67_.dbf
datafile 3 switched to datafile copy
input datafile copy RECID=6 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_undotbs1_b1sqot9h_.dbf
datafile 2 switched to datafile copy
input datafile copy RECID=7 STAMP=858756425 file name=/u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf
contents of Memory Script:
{
# set requested point in time
set until time "to_date('2014-09-20:07:22:29','YYYY-MM:DD:HH24:MI:SS')";
# online the datafiles restored or switched
sql clone "alter database datafile 1 online";
sql clone "alter database datafile 3 online";
sql clone "alter database datafile 2 online";
sql clone "alter database datafile 8 online";
# recover and open resetlogs
recover clone database tablespace "TESTTBS", "SYSTEM", "UNDOTBS1", "SYSAUX" delete archivelog;
alter clone database open resetlogs;
}
executing Memory Script
executing command: SET until clause
sql statement: alter database datafile 1 online
sql statement: alter database datafile 3 online
sql statement: alter database datafile 2 online
sql statement: alter database datafile 8 online
Starting recover at 20-SEP-14
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 00002: /u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf
channel ORA_AUX_DISK_1: reading from backup piece /u01/backups/rman_backup/inc_level_1/200914_071502/inc_level_1_ORCL_20140920_858755714_21_1
channel ORA_AUX_DISK_1: piece handle=/u01/backups/rman_backup/inc_level_1/200914_071502/inc_level_1_ORCL_20140920_858755714_21_1 tag=TAG20140920T071513
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 18 is already on disk as file /u01/1_18_838842842.dbf
archived log for thread 1 with sequence 19 is already on disk as file /u01/1_19_838842842.dbf
archived log for thread 1 with sequence 20 is already on disk as file /u01/1_20_838842842.dbf
archived log file name=/u01/1_18_838842842.dbf thread=1 sequence=18
archived log file name=/u01/1_19_838842842.dbf thread=1 sequence=19
archived log file name=/u01/1_20_838842842.dbf thread=1 sequence=20
media recovery complete, elapsed time: 00:00:00
Finished recover at 20-SEP-14
database opened
contents of Memory Script:
{
# make read only the tablespace that will be exported
sql clone 'alter tablespace TESTTBS read only';
# create directory for datapump import
sql "create or replace directory TSPITR_DIROBJ_DPDIR as ''
/u01''";
# create directory for datapump export
sql clone "create or replace directory TSPITR_DIROBJ_DPDIR as ''
/u01''";
}
executing Memory Script
sql statement: alter tablespace TESTTBS read only
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01''
sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/u01''
Performing export of metadata...
EXPDP> Starting "SYS"."TSPITR_EXP_DFCz":
EXPDP> Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
EXPDP> Processing object type TRANSPORTABLE_EXPORT/TABLE
EXPDP> Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
EXPDP> Master table "SYS"."TSPITR_EXP_DFCz" successfully loaded/unloaded
EXPDP> ******************************************************************************
EXPDP> Dump file set for SYS.TSPITR_EXP_DFCz is:
EXPDP> /u01/tspitr_DFCz_62260.dmp
EXPDP> ******************************************************************************
EXPDP> Datafiles required for transportable tablespace TESTTBS:
EXPDP> /u01/app/oracle/oradata/orcl/testtbs.dbf
EXPDP> Job "SYS"."TSPITR_EXP_DFCz" successfully completed at 07:28:42
Export completed
contents of Memory Script:
{
# shutdown clone before import
shutdown clone immediate
# drop target tablespaces before importing them back
sql 'drop tablespace TESTTBS including contents keep datafiles';
}
executing Memory Script
database closed
database dismounted
Oracle instance shut down
sql statement: drop tablespace TESTTBS including contents keep datafiles
Performing import of metadata...
IMPDP> Master table "SYS"."TSPITR_IMP_DFCz" successfully loaded/unloaded
IMPDP> Starting "SYS"."TSPITR_IMP_DFCz":
IMPDP> Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
IMPDP> Processing object type TRANSPORTABLE_EXPORT/TABLE
IMPDP> Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
IMPDP> Job "SYS"."TSPITR_IMP_DFCz" successfully completed at 07:29:27
Import completed
contents of Memory Script:
{
# make read write and offline the imported tablespaces
sql 'alter tablespace TESTTBS read write';
sql 'alter tablespace TESTTBS offline';
# enable autobackups after TSPITR is finished
sql 'begin dbms_backup_restore.AutoBackupFlag(TRUE); end;';
}
executing Memory Script
sql statement: alter tablespace TESTTBS read write
sql statement: alter tablespace TESTTBS offline
sql statement: begin dbms_backup_restore.AutoBackupFlag(TRUE); end;
Removing automatic instance
Automatic instance removed
auxiliary instance file /u01/ORCL/datafile/o1_mf_temp_b1sqqxbb_.tmp deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_3_b1sqqsvf_.log deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_2_b1sqqql5_.log deleted
auxiliary instance file /u01/ORCL/onlinelog/o1_mf_1_b1sqqo4d_.log deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_sysaux_b1sqnphr_.dbf deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_undotbs1_b1sqot9h_.dbf deleted
auxiliary instance file /u01/ORCL/datafile/o1_mf_system_b1sqot67_.dbf deleted
auxiliary instance file /u01/ORCL/controlfile/o1_mf_b1sqnht0_.ctl deleted
Finished recover at 20-SEP-14
Once the import is done successfully, RMAN automatically deletes the temporary database that it had
created earlier.Now, lets connect to the main database and check if we are able to access the dropped
table. But, before that, we need to bring the tablespace online.
SQL> set linesize 100
SQL> col name for a60
SQL> select name,status from v$datafile;
NAME STATUS
------------------------------------------------------------ -------
/u01/app/oracle/oradata/orcl/system01.dbf SYSTEM
/u01/app/oracle/oradata/orcl/sysaux01.dbf ONLINE
/u01/app/oracle/oradata/orcl/undotbs01.dbf ONLINE
/u01/app/oracle/oradata/orcl/users01.dbf ONLINE
/u01/app/oracle/oradata/orcl/example01.dbf ONLINE
/u01/app/oracle/oradata/orcl/TS_HYBRIS_DATA.dbf OFFLINE
/u01/app/oracle/oradata/orcl/TS_HYBRIS_INDEX.dbf ONLINE
/u01/app/oracle/oradata/orcl/testtbs.dbf OFFLINE
8 rows selected.
SQL> select tablespace_name,status from dba_tablespaces;
TABLESPACE_NAME STATUS
------------------------------ ---------
SYSTEM ONLINE
SYSAUX ONLINE
UNDOTBS1 ONLINE
TEMP ONLINE
USERS ONLINE
EXAMPLE ONLINE
TS_HYBRIS_DATA OFFLINE
TS_HYBRIS_INDEX ONLINE
TESTTBS OFFLINE
We can notice that the tablespace TESTTBS and TS_HYBRIS_DATA are offline. Before proceeding, this
tablespaces needs to be made online.
QL> alter tablespace TS_HYBRIS_DATA online;
Tablespace altered.
SQL> alter tablespace testtbs online;
Tablespace altered.
SQL> select tablespace_name,status from dba_tablespaces;
TABLESPACE_NAME STATUS
------------------------------ ---------
SYSTEM ONLINE
SYSAUX ONLINE
UNDOTBS1 ONLINE
TEMP ONLINE
USERS ONLINE
EXAMPLE ONLINE
TS_HYBRIS_DATA ONLINE
TS_HYBRIS_INDEX ONLINE
TESTTBS ONLINE
SQL> conn soumya/soumya;
Connected.
SQL> SELECT * FROM xyz;
ID
----------
1
1
1
1
1
1
Finally we can see the dropped table is back with its data inside it.
Please share your ideas and opinions about this topic. If you like this post, then please share with others. Please subscribe on email for every updates on mail.
Nenhum comentário:
Postar um comentário