In Oracle10g sqlplus, how do you find the tables that have been dropped?

Showing Answers 1 - 3 of 3 Answers

gomathi.e

  • Apr 7th, 2006
 

select * from recyclebin;

using this query we can see the tables which are dropped. its applicable only in oracle 10g.

  Was this answer useful?  Yes

Suresh

  • Aug 4th, 2006
 

You can use this command to retrieve the dropped table, simply by querying,
FLASHBACK TABLE <table_name> TO BEFORE DROP;

you can also query this to view the objects that can be undropped,
SHOW RECYCLEBIN

  Was this answer useful?  Yes

g_sidhu

  • Feb 6th, 2008
 

When you drop a table, normally the database does not immediately release the space associated with the table. Rather, the database renames the table and places it in a recycle bin, where it can later be recovered with the FLASHBACK TABLE statement if you find that you dropped the table in error.

FLASHBACK TABLE RECYCLETEST TO BEFORE DROP;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions