create table x (x int)
Table created.
insert into x values (1)
1 row(s) inserted.
commit
Statement processed.
select * from x
X |
---|
1 |
drop table x
Table dropped.
select * from x
ORA-00942: table or view does not existMore Details: https://docs.oracle.com/error-help/db/ora-00942
select * from user_recyclebin
OBJECT_NAME | ORIGINAL_NAME | OPERATION | TYPE | TS_NAME | CREATETIME | DROPTIME | DROPSCN | PARTITION_NAME | CAN_UNDROP | CAN_PURGE | RELATED | BASE_OBJECT | PURGE_OBJECT | SPACE |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
BIN$+wYDLlUrZdDgQwuS5QrsnQ==$0 | X | DROP | TABLE | LIVE_SQL_TABLESPACE | 2014-06-04:09:40:23 | 2014-06-04:09:40:23 | 13627410626480 | - | YES | YES | 351937 | 351937 | 351937 | 8 |
Flashback table x to before drop
Statement processed.
select * from x
X |
---|
1 |
drop table x
Table dropped.
begin
execute immediate('PURGE RECYCLEBIN');
end;
Statement processed.
select * from user_recyclebin
no data found