第一步查询当前系统时间
select sysdate from dual;
第二步通过时间查询
select * from A as of timestamp to_timestamp('2016-11-24 11:05:30','yyyy-mm-dd hh24:mi:ss');
第三部回滚制定数据 A 为需要回滚的表
alter table A enable row movement;
flashback table A to timestamp to_timestamp('2016-11-24 11:05:30','yyyy-mm-dd HH24:MI:SS');