oracle
SQL> create table x (id number);
表已創建
SQL> drop table x;
表已刪除
SQL> set serveroutput on
SQL> select * from user_tables where table_name =
未選定行
SQL> flashback table x to before drop;
閃回完成
SQL> select
SQL> drop table x;
表已刪除
SQL> purge table x;
表已清除
SQL> select
未選定行
SQL> flashback table x to before drop;
flashback table x to before drop
*
第
ORA
From:http://tw.wingwit.com/Article/program/Oracle/201311/16825.html