熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

oracle中的回收站recyclebin

2022-06-13   來源: Oracle 

  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: 對象不在回收站中


From:http://tw.wingwit.com/Article/program/Oracle/201311/16825.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.