1> select systimestamp from 表名
2> select * from 表名as of timestamp to_date(‘2016-10-24 10:02:55’,‘YYYY-MM-DD HH24:MI:SS’)
3>flashback table 表名 to timestamp to_date(‘2016-10-24 10:02:55’,‘YYYY-MM-DD HH24:MI:SS’)
如果提示:“因为未启用行移动功能,不能闪回表”
alert table 表名 enable row movenment
然后再执行3>