Oracle闪回查询

前端之家收集整理的这篇文章主要介绍了Oracle闪回查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Oracle数据库有时候不小心删除掉数据,想查询这些数据,或者恢复数据,就可以使用带有as of子句的select语句进行闪回查询

闪回查询过去某个时间段的数据
select * from tb
as of timestamp to_timestamp('2017-11-07 08:50:00','yyyy-mm-dd hh:mi:ss')
where code = '001';

闪回恢复
insert into tb(
select * from tb
as of timestamp to_timestamp('2017-11-07 08:50:00','yyyy-mm-dd hh:mi:ss')
where code = '001'
);
原文链接:https://www.f2er.com/oracle/207034.html

猜你在找的Oracle相关文章