1、造数据:新建表 删除数据
create table scott.student2 as select * from scott.student1;
delete from scott.student2
2、闪回:
flashback table scott.student2 timestamp(to_date('2017-09-14 16:30:29','yyy-mm-dd hh24-mi-ss'));
3、闪回报错:
第 1 行出现错误:
ORA-08189: 因为未启用行移动功能, 不能闪回表
4、启用
alter table tt enable row movement;
5、闪回
重复2
闪回表前提:启用4