Recover a dropped table
Restore the dropped table with same name:
oracle configurationintermediate
by OracleDba
12 views
Restore the dropped table with same name:
1234
SQL>flashback table DBACLASS.EMP to before drop;
SQL>Flashback table DBACLASS.EMP to before drop rename to EMP_BACKUP;
Note - To recover the table, table should be present in recyclebin:
select * from dba_recyclebin;Please to add comments
No comments yet. Be the first to comment!