1. 在delete之后的方式
alter table aa enable row movement; ---启动行移动功能
flashback table aa to timestamp to_timestamp('2013-01-28 10:49:30','yyyy-MM-dd hh24:mi:ss'); --将恢复到时间点之后的数据
2. 在drop之后恢复数据方式
flashback table aa to before drop;
时间: 2024-10-07 10:51:33