欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-10-31 11:09:52
--闪回 回退已删除的数据 select * from NCMS_SPECIALIST_CHRONIC as of timestamp to_timestamp('2019-12-16 9:04:00', 'yyyy-mm-dd hh24:mi:ss'); --开启这张表的状态 alter tabl ......
--闪回  回退已删除的数据
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;