oracle恢复短时间的删除的数据

1、开启行迁移

 alter table account enable row movement;

2、恢复

flashback table account to timestamp TO_TIMESTAMP('20140422 15:10:00','YYYYMMDD HH24:MI:SS');

3、关闭行迁移

 alter table account disable row movement;

你可能感兴趣的:(oracle,sql,数据库)