ORACLE将表中的数据恢复到某一个时间点

执行如下SQL将test_temp表中的数据恢复到 2013-04-26  21:06:00

注意,这里一定要先删除全部数据,否则可能会导致数据重复

delete from test_temp;

insert into test_temp

select *

from test_temp as of timestamp to_timestamp('2013-04-26 21:06:00', 'yyyy-mm-dd HH24:mi:ss')

commit;

附:truncate后的数据是无法恢复的

truncate table test_temp;

posted @ 2015-11-02 07:57  全威儒  阅读(4166)  评论(0编辑  收藏  举报