练习rman 逐步恢复归档日志-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3503196
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2010-11-10 18:23:03

 
逐步恢复oracle 11gr2 数据库
set nls_date_format=yyyy-mm-dd hh24:mi:ss
rman target /
backup as compressed backupset
 incremental level 0 database
 format 'c:\app\full_%u' tag 'full';
 
插入数据1
sqlplus "/as sysdba"
archive log list;
create table t1 (a int);
insert into t1 values (111);
commit;
 
sql> archive log list;
数据库日志模式            存档模式
自动存档             启用
存档终点            use_db_recovery_file_dest
最早的联机日志序列     5
下一个存档日志序列   7
当前日志序列           7
 
alter system switch logfile;
insert into t1 values (222);
commit;
---当前日志序列           8
 
alter system switch logfile;
insert into t1 values (333);
commit;
---当前日志序列           11
 
--只备份部分归档日志
backup as compressed backupset archivelog until sequence=10;
backup current controlfile format 'c:\app\con_%u';
shutdown abort
 
删除所有的控制文件、数据文件、日志文件 模拟全库损坏
 
开始恢复 查看 再恢复过程
恢复控制文件 先恢复较小的sequence
rman target /
shutdown abort;
startup nomount;
restore controlfile from 'c:\app\con_1clsm02m_1_1';
startup mount;
run {
set until sequence=9; # <-- 先到较前的一个号 这里oracle会恢复到8,是小于此值的最大值!!!
restore database;
recover database;
}
exit
 
只读打开,看看是否符合要求了
conn /as sysdba
alter database open read only;
select * from t1;
shutdown immediate;
startup mount;
 
继续修复
rman target /
recover database until sequence=9;  # 逐步恢复 10  11  12  13
exit
 
重复以上只读打开、继续恢复的步骤 检查
 
 
 
阅读(3451) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图