Oracle数据被删除(delete,drop)之后的恢复方式
1. 在delete之后的方式
www.2cto.com
alter table aa enable row movement; —启动行移动功能
flashback table aa to timestamp to_timestamp
oracle账号('2013-01-28 10:49:30','yyyy-MM-dd hh24:mi:ss');
–将恢复到时间点之后的数据
2. 在drop之后恢复数据方式
flashback table aa to before drop;