Oracle进行update操作并提交后数据回滚

– 查询你执行update 语句之前的数据 精确到什么时间
select * from LOT as of timestamp to_timestamp(‘2019-07-4 20:00:00’, ‘yyyy-mm-dd hh24:mi:ss’);
– 开启可移动数据命令,执行完就可以回滚数据
alter table LOT enable row movement;
–正式回滚 update 语句前的数据
flashback table LOT to timestamp to_timestamp(‘2019-07-4 20:00:00’, ‘yyyy-mm-dd hh24:mi:ss’);

你可能感兴趣的:(Oracle)