大家好,又见面了,我是你们的朋友全栈君。
在开发或者维护过程存在需要对Oracle数据的恢复工作,下面提供几种方式:
1. 数据查询(20分钟前)
select * from TABLE_NAME as of timestamp sysdate-20/1440;
2. 更新数据恢复
2.1 清空当前表,恢复20分钟前数据(不推荐)
DELETE TABLE_NAME where 1=1;
COMMIT ;
insert into TABLE_NAME select * from TABLE_NAME as of timestamp sysdate-20/1440;
COMMIT;
2.1 备份当前表,恢复20分钟前数据(推荐)
create table TABLE_NAME_OLD as select * from TABLE_NAME;
create table TABLE_NAME_NEW as select * from TABLE_NAME as of timestamp sysdate-20/1440;
DELETE TABLE_NAME where 1=1;
COMMIT ;
insert into TABLE_NAME select * from TABLE_NAME_NEW;
COMMIT;
3. 表结构恢复
flashback table T_XXXX to before drop;
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/160815.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...