oracle 误删除数据,回退表数据
Posted 一粒麦子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 误删除数据,回退表数据相关的知识,希望对你有一定的参考价值。
select * from sh_gonghuo_renyuan as of timestamp to_timestamp(‘2017-11-17 16:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘);
--3、恢复删除且已提交的数据
alter table sh_gonghuo_renyuan enable row movement;
--flashback table sh_gonghuo_renyuan to timestamp to_timestamp(‘2017-11-17 16:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘);
flashback table sh_gonghuo_renyuan to timestamp (systimestamp-interval ‘30‘ minute)
--最后通过这个解决
以上是关于oracle 误删除数据,回退表数据的主要内容,如果未能解决你的问题,请参考以下文章