oracle闪回表介绍(二)
ect object_name, original_name, operation, type, droptime from recyclebin;
未选定行
[sql]
SQL> drop table employees_test;
表已删除。
SQL> flashback table employees_test to before drop rename to employees_demo;
SQL> select * from employees_test;
select * from employees_test
*
第 1 行出现错误:
ORA-00942: 表或视图不存在
以上内容为简单的闪回表操作,内容来自oracle官方文档。
作者 IndexMan