Flashback Drop (Recycle Bin)
Posted by FatDBA on July 16, 2012
When you’ve deleted a Table and soon after thyat deletion one of the user created a table with the same name then in that case we have to perform some steps to mitigate the conflict otherwise you’ll recieve error ‘Object trying to create already exists’ and will not allow you to restore the Old Table.
Deleted Table emp1 from system —
SQL> drop table emp1;
Table dropped.
SQL> show recyclebin;
ORIGINAL NAME RECYCLEBIN NAME OBJECT TYPE DROP TIME
—————- —————————— ———— ——————-
EMP1 BIN$xNis/0KmyEPgQAB/AQBy6Q==$0 TABLE 2012-07-15:12:16:41
Created a table with same name after deletion – emp1 —
SQL> create table emp1 (name varchar2(10));
Table created.
SQL> drop table emp1;
Table dropped.
SQL> show recyclebin;
ORIGINAL NAME RECYCLEBIN NAME OBJECT TYPE DROP TIME
—————- —————————— ———— ——————-
EMP1 BIN$xNis/0KnyEPgQAB/AQBy6Q==$0 TABLE 2012-07-15:12:17:31
EMP1 BIN$xNis/0KmyEPgQAB/AQBy6Q==$0 TABLE 2012-07-15:12:16:41
Now if i’ll try to Flashback table emp1 then it will restore the one with latest Time Stamp.
SQL> show recyclebin;
ORIGINAL NAME RECYCLEBIN NAME OBJECT TYPE DROP TIME
—————- —————————— ———— ——————-
EMP1 BIN$xNis/0KmyEPgQAB/AQBy6Q==$0 TABLE 2012-07-15:12:16:41
This can also be performed using Time Stamp —
FLASHBACK TABLE emp1 TO TIMESTAMP TO_TIMESTAMP(‘2012-07-15:12:16:41’, ‘YYYY-MM-DD HH:MI:SS’);
During the flashback operation the table can be renamed.
FLASHBACK TABLE flashback_drop_test TO BEFORE DROP RENAME TO flashback_drop_test_old;
Leave a Reply