| Why this happens with Recyclebin in Oracle [message #648505] |
Wed, 24 February 2016 06:15  |
|
|
select * from tab;
some tables data
.
.
.
BIN$7ek/inXeSaW2dtKYxtNoTQ==$0 TABLE (null)
BIN$aVPeQu17QxWuILhdnyTYeA==$0 TABLE (null)
BIN$enEbb7yXSIahLLFzALsg4g==$0 TABLE (null)
BIN$csvnlWvuRFKNhNQX0+Dw/w==$0 TABLE (null)
select object_name, original_name, type, can_undrop as "UND", can_purge as "PUR", droptime
from recyclebin;
no rows selected
select * from "BIN$7ek/inXeSaW2dtKYxtNoTQ==$0";
7839 KING PRESIDENT 17-NOV-81 5000 10
7782 CLARK MANAGER 7839 09-JUN-81 2450 10
7934 MILLER CLERK 7782 23-JAN-82 1300 10
SQL> purge table "BIN$7ek/inXeSaW2dtKYxtNoTQ==$0";
purge table "BIN$7ek/inXeSaW2dtKYxtNoTQ==$0"
*
ERROR at line 1:
ORA-38307: object not in RECYCLE BIN
-- actually this table name is emp10
flashback table emp10 to before drop
*
ERROR at line 1:
ORA-38305: object not in RECYCLE BIN
Why this happends if there is no table in Recyclebin, if its the case how the data getting retrieved when I query "select * from "BIN$7ek/inXeSaW2dtKYxtNoTQ==$0";".
Thanks in advance
mdsirajoddin
|
|
|
|
|
|
| Re: Why this happens with Recyclebin in Oracle [message #648510 is a reply to message #648509] |
Wed, 24 February 2016 06:47   |
|
|
SQL> select * from V$VERSION;
BANNER
----------------------------------------------------------------
Oracle Database 10g Release 10.2.0.1.0 - Production
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
|
|
|
|
|
|
|
|
|
|
|
|
|
|