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

使用rman执行recover database 的时候出现RMAN-06054的错误提示:
RMAN> recover database; Starting recover at -OCT-
using channel ORA_DISK_1 starting media recovery archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest2/1_1_861389770.dbf
archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_2_861389770.dbf
archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_3_861389770.dbf
archived log for thread with sequence is already on disk as file /u01/app/archivelog/dest1/1_4_861389770.dbf
archived log for thread with sequence is already on disk as file /u01/app/archivelog2/dest1/1_5_861389770.dbf
archived log for thread with sequence is already on disk as file /u01/app/archivelog2/dest1/1_6_861389770.dbf
archived log file name=/u01/app/archivelog/dest2/1_1_861389770.dbf thread= sequence=
archived log file name=/u01/app/archivelog/dest1/1_2_861389770.dbf thread= sequence=
archived log file name=/u01/app/archivelog/dest1/1_3_861389770.dbf thread= sequence=
archived log file name=/u01/app/archivelog/dest1/1_4_861389770.dbf thread= sequence=
archived log file name=/u01/app/archivelog2/dest1/1_5_861389770.dbf thread= sequence=
archived log file name=/u01/app/archivelog2/dest1/1_6_861389770.dbf thread= sequence=
unable to find archived log
archived log thread= sequence=
RMAN-: ===========================================================
RMAN-: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-: ===========================================================
RMAN-: failure of recover command at // ::
RMAN-: media recovery requesting unknown archived log for thread with sequence and starting SCN of 在11g官方文档error messages中对错误描述如下:
RMAN-: media recovery requesting unknown archived log for thread string with sequence string and starting SCN of string
Cause: Media recovery is requesting a log whose existence is not recorded in the recovery catalog or target database control file.
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. 可见,出先此错误的原因是恢复需要的日志记录在控制文件或恢复目录中找不到。解决方法分两种情况:
.如果相关的日志存在且可用的话,就将此日志记录添加到控制文件或恢复目录中。
.如果相关的日志已经被删除了或不可用了,那么就按照错误的提示scn将数据库恢复到此scn,本案例是2292709。也就是说此时数据库只能进行不完全恢复了,在打开数据库时得使用resetlogs打开。 RMAN> recover database until scn ; Starting recover at -OCT-
using channel ORA_DISK_1 starting media recovery
media recovery complete, elapsed time: :: 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. Introducing ASLR for FreeBSD

    Shawn WebbOliver Pinter10 July 2014http://www.hardenedbsd.org/ [ 1. Introduction ]Security in FreeBS ...

  2. HDU——T 3072 Intelligence System

    http://acm.hdu.edu.cn/showproblem.php?pid=3072 Time Limit: 2000/1000 MS (Java/Others)    Memory Limi ...

  3. BZOJ——T 3732: Network

    http://www.lydsy.com/JudgeOnline/problem.php?id=3732 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: ...

  4. ShareSDk的使用

    效果: 具体操作参考Mob官网shareSdk的文档 调用方法 public class MainActivity extends Activity { @Override protected voi ...

  5. 实用的 Python 包 —— 使用 win32 的剪贴板

    1. usage >> import win32clipboard >> win32clipboard.OpenClipboard() >> win32clipbo ...

  6. HTTP -- 请求/响应 结构

    一:一个HTTP请求报文由四个部分组成:请求行.请求头部.空行.请求数据. 1.请求行 1.请求方法:GET POST 2.URL字段 3.HTTP版本字段 2.请求头 1.Accept:浏览器可接受 ...

  7. 3.cocos代码入口

    模拟代码进入过程: main.cpp #include <iostream> #include "AppDelegate.h" #include "CCApp ...

  8. PS:切图

    1.从psd中获取资源 2.基本了解 3.简单的图片操作和调整 4.对自己的审美提高一.界面设置: 1.新建设置:ctr+n; 预设:Web,大小Web(1920*1080) 背景:透明 2.移动工具 ...

  9. chsh---更换登录系统时使用的shell

    chsh命令   chsh命令用来更换登录系统时使用的shell.若不指定任何参数与用户名称,则chsh会以应答的方式进行设置. 语法 chsh(选项)(参数) 选项 -s<shell 名称&g ...

  10. ABAP调用外部WebService

    TCode:se80 选择 Package,输入我们自己的开发包,后回车 右击 开发包名称,选择菜单 出现创建向导窗体 选择"Service Consumer",点击 继续 选择& ...