• 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 starting my standby database i found that database is not opening in normal mode. It throws the error-10456 :cannot standby database. 

    On performing some R&D and googling comes to the conclusion that this error is generally occurs because a media recovery or RMAN session may have been in progress on a mounted instance of a standby database when an attempt was made to open the standby database. Hence to solve of this issue we have to cancel any conflicting recovery session and then open the standby database.

    Here is the issue what i have experienced .

    C:>sqlplus sys/xxxx@red as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Oct 3 12:47:32 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options

    SQL> select * from hr.aa;
    select * from hr.aa
                     *
    ERROR at line 1:
    ORA-01219: database not open: queries allowed on fixed tables/views only

    SQL> select name,open_mode from v$database;
    NAME           OPEN_MODE
    ---------      --------------------
    NOIDA          MOUNTED

    SQL> alter database open;
    alter database open
    *
    ERROR at line 1:
    ORA-10456: cannot open standby database; media recovery session may be in progress

    SQL> alter database recover managed standby database cancel;
    Database altered.

    SQL> alter database open;
    Database altered.

    SQL> alter database recover managed standby database using current logfile disconnect ; 
    Database altered.

    Hence, finally we solve the issues.
  • 相关阅读:
    python学习之路-10 网络编程之进阶
    python学习之路-9 socket网络编程
    使用cx_Freeze 将python3代码打包成.exe程序
    如何在已经存在python2的linux环境上安装python3
    python学习之路-8 面向对象之进阶
    python学习之路-7 模块configparser/xml/shutil/subprocess以及面向对象初级入门
    java mybatis XML文件中大于号小于号转义
    java dom4j写入XML
    notepad++ 行末尾添加指定字符
    JQ 动态加载多选框--随记
  • 原文地址:https://www.cnblogs.com/hllnj2008/p/5190865.html
Copyright © 2020-2023  润新知