查看闪回记录 是否有能闪回的记录
select * from 表名 as of timestamp to_timestamp('2016-09-10 11:00:00','yyyy-mm-dd hh24:mi:ss');
对表开启数据行移动
alter table 表名 enable row movement;
闪回
flashback table 表名 to timestamp to_timestamp('2016-09-10 11:00:00','yyyy-mm-dd hh24:mi:ss');
网友评论