问题:Oracle表数据被更新,需要恢复到一个小时之前
处理:select * from 表名 as of TIMESTAMP>sysdate-1/24;
insert into 表名(
select * from 表名 as of TIMESTAMP>sysdate-1/24;
)
问题:Oracle表数据被更新,需要恢复到一个小时之前
处理:select * from 表名 as of TIMESTAMP>sysdate-1/24;
insert into 表名(
select * from 表名 as of TIMESTAMP>sysdate-1/24;
)