一、啟用行移動功能
alter table table_name enable row movement ;
二、可查詢之前某一個時間點的數據(默認是1440分鍾,即24小時內的數據)
select * from table_name as of timestamp to_timestamp('2019-07-01 12:00:00','yyyy-mm-dd hh24:mi:ss') ;
三、恢復數據
flashback table table_name to timestamp to_timestamp('2019-07-01 12:00:00','yyyy-mm-dd hh24:mi:ss') ;