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

Oracle恢复误删数据

程序员文章站 2024-02-13 21:28:46
1.先查出被删除的时间点: select * from flashback_transaction_query where table_name='表名'; 2.根据时间点恢复数据: insert into 表名 select * from 表名 as of timestamp to_timesta... ......
1.先查出被删除的时间点:
 select * from flashback_transaction_query where table_name='表名';

2.根据时间点恢复数据:
insert into 表名 select * from 表名 as of timestamp to_timestamp('时间点', 'yyyy-mm-dd hh24:mi:ss');