转自:http://blog.itpub.net/29800581/viewspace-1307267/

  1. 使用rman执行recover database 的时候出现RMAN-06054的错误提示:
  2. RMAN> recover database;
  3.  
  4. Starting recover at -OCT-
  5. using channel ORA_DISK_1
  6.  
  7. starting media recovery
  8.  
  9. archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest2/1_1_861389770.dbf
  10. archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_2_861389770.dbf
  11. archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_3_861389770.dbf
  12. archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_4_861389770.dbf
  13. archived log for thread with sequence is already on disk as file /u01/app/archivelog2/dest1/1_5_861389770.dbf
  14. archived log for thread with sequence is already on disk as file /u01/app/archivelog2/dest1/1_6_861389770.dbf
  15. archived log file name=/u01/app/archivelog/dest2/1_1_861389770.dbf thread= sequence=
  16. archived log file name=/u01/app/archivelog/dest1/1_2_861389770.dbf thread= sequence=
  17. archived log file name=/u01/app/archivelog/dest1/1_3_861389770.dbf thread= sequence=
  18. archived log file name=/u01/app/archivelog/dest1/1_4_861389770.dbf thread= sequence=
  19. archived log file name=/u01/app/archivelog2/dest1/1_5_861389770.dbf thread= sequence=
  20. archived log file name=/u01/app/archivelog2/dest1/1_6_861389770.dbf thread= sequence=
  21. unable to find archived log
  22. archived log thread= sequence=
  23. RMAN-: ===========================================================
  24. RMAN-: =============== ERROR MESSAGE STACK FOLLOWS ===============
  25. RMAN-: ===========================================================
  26. RMAN-: failure of recover command at // ::
  27. RMAN-: media recovery requesting unknown archived log for thread with sequence and starting SCN of
  28.  
  29. 11g官方文档error messages中对错误描述如下:
  30. RMAN-: media recovery requesting unknown archived log for thread string with sequence string and starting SCN of string
  31. Cause: Media recovery is requesting a log whose existence is not recorded in the recovery catalog or target database control file.
  32. Action: If a copy of the log is available, then add it to the recovery catalog and/or control file via a CATALOG command and then retry the RECOVER command. If not, then a point-in-time recovery up to the missing log is the only alternative and database can be opened using ALTER DATABASE OPEN RESETLOGS command.
  33.  
  34. 可见,出先此错误的原因是恢复需要的日志记录在控制文件或恢复目录中找不到。解决方法分两种情况:
  35. .如果相关的日志存在且可用的话,就将此日志记录添加到控制文件或恢复目录中。
  36. .如果相关的日志已经被删除了或不可用了,那么就按照错误的提示scn将数据库恢复到此scn,本案例是2292709。也就是说此时数据库只能进行不完全恢复了,在打开数据库时得使用resetlogs打开。
  37.  
  38. RMAN> recover database until scn ;
  39.  
  40. Starting recover at -OCT-
  41. using channel ORA_DISK_1
  42.  
  43. starting media recovery
  44. media recovery complete, elapsed time: ::
  45.  
  46. Finished recover at -OCT-

(转)RMAN-06054: media recovery requesting unknown archived log for thread...的更多相关文章

  1. ORA-01153: an incompatible media recovery is active

    ORA-01153: an incompatible media recovery is active Cause: Attempted to start an incompatible media ...

  2. Basic Concepts of Block Media Recovery

    Basic Concepts of Block Media Recovery Whenever block corruption has been automatically detected, yo ...

  3. ORA-01113: file xxxx needs media recovery

    由于规范存储位置以及存储空间调整缘故需要移动表空间MRP_INDEX2的数据文件,如下所示,首先将表空间MRP_INDEX2脱机; 然后复制数据文件:接着重命名数据文件,最后将表空间MRP_INDEX ...

  4. ORA-10456:cannot open standby database;media recovery session may be in process

    http://neeraj-dba.blogspot.com/2011/10/ora-10456-cannot-open-standby-database.html   Once while star ...

  5. Background Media Recovery terminated with ORA-1274 after adding a Datafile (Doc ID 739618.1)

    APPLIES TO: Oracle Database - Enterprise Edition - Version 9.2.0.1 to 12.1.0.2 [Release 9.2 to 12.1] ...

  6. 11G新特性 -- 块介质恢复性能增强(block media recovery)

    块介质恢复性能增强(block media recovery) :只是恢复受损的块.不需要将受损的数据文件offline.针对受损的数据块,使用备份中好的数据块进行restore和recover,避免 ...

  7. 【转】BMR(Block Media Recovery)

    关于RMAN的块恢复.Block是oracle数据库最小恢复单位.鉴于此,BMR可以大大缩短恢复的时间,另外,在进行BMR时不需要停掉数据库,可以直接在数据库open状态对数据文件进行恢复,只是需要恢 ...

  8. Performing User-Managed Database-18.7、Performing Complete User-Managed Media Recovery

    18.7.Performing Complete User-Managed Media Recovery 完毕一致性备份,把数据库恢复到当前的scn是最好的结果.能够恢复整个数据库.恢复单个表空间.或 ...

  9. 诊断:MRP0: Background Media Recovery terminated with error 1111

    表现: 灾备环境,无法继续应用日志. 日志: MRP0: Background Media Recovery terminated with error 1111 Fri Jan 18 15:55:2 ...

随机推荐

  1. C++ lambda表达式 (一)

    为什么要lambda函数 匿名函数是许多编程语言都支持的概念,有函数体,没有函数名.1958年,lisp首先采用匿名函数,匿名函数最常用的是作为回调函数的值.正因为有这样的需求,c++引入了lambd ...

  2. EditPlus,UltraEdit等编辑器列选择的方法

    在使用富文本编辑器的时候,通常模式是行选择状态,由于今天想使用EditPlus列选择状态, 于是通过在网上收集的资料,总结出相关富文本编辑器的列选择的方法. EditPlus  1)菜单:编辑 -&g ...

  3. cache -- clear( 缓存清除的方法)

    一:meta方法 <META HTTP-EQUIV="pragma" CONTENT="no-cache"> <META HTTP-EQUIV ...

  4. HDU 2564 饭卡

    饭卡 Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submissi ...

  5. jQuery插件--根据数据加载的进度动画案例

    css: *{ margin:; padding:; } @media screen and (min-width:320px){ html{font-size:12px;}} @media scre ...

  6. 【技能】Ext.Viewport 实现左三右一排列方式。

    1.Extjs 布局非常是灵活.可是吐槽下CSS,太难重写,想自己重构一套都难哎... var viewport = new Ext.Viewport({ layout:'border', items ...

  7. CCNP路由实验之十五 NAT(网络地址转换)

     CCNP路由实验之十五 NAT(网络地址转换) 众所周知,要让自己的电脑连上Internet,必须要到运营商(ISP)申请一个上网账号,依据此账号申请自己的宽频业务(拨号上网.商业固定IP等等) ...

  8. SDUT--Pots(二维BFS)

    Pots Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描写叙述 You are given two pots, having the ...

  9. java初始化过程中成员变量

    package day01; class Base{ int j; //1.j=0 Base(){ add(1); //2.调用子类add()方法 System.out.println(j); //4 ...

  10. Android之Socket的基于UDP传输

    接收方创建步骤: 1.  创建一个DatagramSocket对象,并指定监听的端口号 DatagramSocket socket = new  DatagramSocket (4567); 2. 创 ...