Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Unable to recover a drop table from recyclebin?

Unable to recover a drop table from recyclebin?

From: <lazyboy_2k_at_yahoo.com>
Date: 1 May 2007 10:23:59 -0700
Message-ID: <1178040239.143041.270980@c35g2000hsg.googlegroups.com>


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_ZIP
S_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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US