oracle 闪会到某个时间点

正常情况下,由于已经做了commit操作,所以rollback已经无效了,要想得到 2011-12-9 10:51:00 之前的数据,怎么办?
使用timestamp时间点闪回:

可以执行以下命令
alter table 表名 enable row movement; --开启表行移动
flashback table 表名 to timestamp to_timestamp('20130813 14:00:00','yyyymmdd hh24:mi:ss');
--闪回到2013年8月13日14点

猜你喜欢

转载自blog.csdn.net/qq_38380025/article/details/80434144