数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

oracle中的回收站recyclebin


发布日期:2023年03月04日
 
oracle中的回收站recyclebin

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

上一篇:在Oracle9i中如何自行编译BBED工具

下一篇:oracle性能调整—诊断latch竞争