日期:2014-05-16  浏览次数:20350 次

找回被删除的数据

利用 delete from chg_number; 时

找回方式

insert into chg_number select * from?chg_number as of timestamp sysdate - 1/24/10; --1天/24小时/10分钟

?

利用truncate table chg_number;时

找回方式

?

?

利用 drop table chg_number; 时

找回方式

flashback table chg_number to before drop;

?