1.先查出被刪除的時間點: select * from flashback_transaction_query where table_name='表名'; 2.根據時間點恢複數據: insert into 表名 select * from 表名 as of timestamp to_timesta... ...
1.先查出被刪除的時間點:
select * from flashback_transaction_query where table_name='表名';
2.根據時間點恢複數據:
insert into 表名 select * from 表名 as of timestamp to_timestamp('時間點', 'yyyy-mm-dd hh24:mi:ss');