步驟:
1.查詢刪除時間點之前的數據,確認好時間點
select * from TEST as of timestamp to_timestamp('2021-12-08 17:00:00', 'yyyy-mm-dd hh24:mi:ss');
2.開啟行移動
alter table TEST enable row movement;
3.數據恢復到那個時間點
flashback table TEST to timestamp to_timestamp('2021-12-08 17:00:00','yyyy-mm-dd hh24:mi:ss');
4.關閉行移動
alter table TEST disable row movement
參考路徑:https://blog.csdn.net/weixin_41364238/article/details/109029803