Oracle恢复误删数据
Posted 码农小明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle恢复误删数据相关的知识,希望对你有一定的参考价值。
1.先查出被删除的时间点:
select * from flashback_transaction_query where table_name=‘表名‘;
2.根据时间点恢复数据:
insert into 表名 select * from 表名 as of timestamp to_timestamp(‘时间点‘, ‘yyyy-mm-dd hh24:mi:ss‘);
以上是关于Oracle恢复误删数据的主要内容,如果未能解决你的问题,请参考以下文章