刚删除数据,已提交或默认提交,闪回数据

database

--闪回  回退已删除的数据

select * from NCMS_SPECIALIST_CHRONIC as of timestamp to_timestamp("2019-12-16 9:04:00", "yyyy-mm-dd hh24:mi:ss");

--开启这张表的状态

alter table NCMS_SPECIALIST_CHRONIC enable row movement;

flashback table NCMS_SPECIALIST_CHRONIC  to timestamp TO_TIMESTAMP("2019-12-16 9:04:00", "yyyy-mm-dd hh24:mi:ss");

--关闭

alter table NCMS_SPECIALIST_CHRONIC disable row movement;

以上是 刚删除数据,已提交或默认提交,闪回数据 的全部内容, 来源链接: utcz.com/z/531899.html

回到顶部