--查询指定时刻的数据
SELECT * FROM t_noentryquery as of timestamp to_timestamp('2022-03-03 09:40:00','yyyy-MM-dd HH24:MI:SS');
--如果闪回恢复数据提示:因为未启用行移动功能,不能闪回表。 执行以下语句,允许行移动
alter table t_noentryquery enable row movement;
--闪回恢复数据
flashback table t_noentryquery to timestamp to_timestamp('2022-03-03 09:40:00','yyyy-MM-dd HH24:MI:SS');
plsql恢复操作表的数据
于 2022-03-03 09:59:10 首次发布