Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Unable to recover a drop table from recyclebin?
Maxim Demenko wrote:
> DA Morgan schrieb:
>> >> FLASHBACK TABLE "<recyclebin_name_not_original_name> >> TO BEFORE DROP; >>
Does this help?
SQL> create table t (
2 testcol varchar2(20));
Table created.
SQL> drop table t;
Table dropped.
SQL> select object_name, original_name
2 from recyclebin;
OBJECT_NAME ORIGINAL_NAME ------------------------------ --------------------------------BIN$PiPfN+acQVy42vRuWDgYmQ==$0 T
SQL> flashback table "BIN$PiPfN+acQVy42vRuWDgYmQ==$0"
2 to before drop;
Flashback complete.
SQL> desc t
Name Null? Type
----------- ------------ ------------
TESTCOL VARCHAR2(20)
SQL>
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Tue May 01 2007 - 18:02:20 CDT
![]() |
![]() |