如何恢复不小心删除的数据

--开启行移动功能
alter table 表名 enable row movement;
--恢复表数据
flashback table 表名 to timestamp to_timestamp('2014-05-19 09:40:00','yyyy-mm-dd hh24:mi:ss');
上述时间为删除数据的时间
备注:恢复后请关闭行移动功能
--关闭行移动功能
alter table 表名 disable row movement;

你可能感兴趣的:(如何恢复不小心删除的数据)