Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Unable to recover a drop table from recyclebin?
Hi,
I'm trying to find out why I'm not able to recover a drop table from a recyclebin where a recyclebin is already turned on. I'm running sol 10 & oracle 10g. Am I missing anything?
SQL> alter session set recyclebin = on;
Session altered.
SQL> select count(*) from recyclebin;
COUNT(*)
0
SQL> create table mytable as select * from student where s_last = 'Johnson' and s_first = 'Mike';
Table created.
SQL> select * from mytable;
S_ID S_LAST S_FIRST
---------- -------------------- -------------------- -
S_ADDRESS S_CITY S_ S_ZIPS_PHONE S_
SQL> show parameters recyclebin
NAME TYPE VALUE
------------------------------------ -----------
------------------------------
recyclebin string ON
SQL> drop table mytable;
Table dropped.
SQL> select count(*) from recyclebin;
COUNT(*)
0
SQL> flashback table mytable to before drop;
flashback table mytable to before drop
*
ERROR at line 1:
ORA-38305: object not in RECYCLE BIN
SQL>
SQL> show parameters recyclebin
NAME TYPE VALUE
------------------------------------ -----------
------------------------------
recyclebin string ON
Any helps/suggestions are appreciated.
TIA,
-Chris
Received on Tue May 01 2007 - 12:23:59 CDT
![]() |
![]() |