oracle g中加入了recyclebin的功能即drop table 之后还能用命令直接restore
SQL> create table x (id number);
表已创建
SQL> drop table x;
表已删除
SQL> set serveroutput on
SQL> select * from user_tables where table_name =X;
未选定行
SQL> flashback table x to before drop;
闪回完成
SQL> select from user_tables where table_name =X;
SQL> drop table x;
表已删除
SQL> purge table x;
表已清除
SQL> select from user_tables where table_name =X;
未选定行
SQL> flashback table x to before drop;
flashback table x to before drop
*
第 行出现错误:
ORA: 对象不在回收站中