Reputation: 3099
I dropped my table Departments I don't know how its happened and I can't roll it back
I really really need it back please help
Upvotes: 2
Views: 4177
Reputation: 17
use FlashBack Query
flashback table departments to before drop;
Upvotes: 2
Reputation: 355
Its not a big problem you can try one of these :
flashback table departments to before drop;
or
select * from user_recyclebin;
flashback table "BIN$...." to before drop;
Note that you can rollback DML(insert, update, delete
...) but not DDL(create, DROP
...)
Good luck.
Upvotes: 10