zoukankan      html  css  js  c++  java
  • 053573

    Upon starting your database, you receive the following error:
    SQL> startup ORACLE instance started.
    Total System Global Area 171581440 bytes Fixed Size 1298640 bytes Variable Size 146804528 bytes Database Buffers 20971520 bytes Redo Buffers 2506752 bytes Database mounted.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/oracle01/oradata/orcl/redo01.log' ORA-00312: online log 1 thread 1:'/oracle01/oradata/orcl/redo01a.log'
    You can choose from the following steps:
    Which is the correct order of these steps in this case?
    A. Restore the database datafiles.
    B. Issue the alter database clear unarchived logfile group 1 command.
    C. Issue the alter database open command.
    D. Issue the alter database open resetlogs command.
    E. Recover the database using point-in-time recovery.
    F. Issue the Startup Mount command to mount the database.
    G. Back up the database.
    A. a, f, e, d, g
    B. f, e, d
    C. f, b, c, g
    D. a, f, c
    E. The database cannot be recovered.

      ORA-00312 or ORA-00313 http://www.linuxidc.com/Linux/2012-02/53426.htm
      挂载(mount)→清理(clear)→打开(open)→备份(backup)

      You should first start the database in mount mode using the startup mount command.You then issue the alter database clear unarchived logfile command.This will clear the log file if it needs to be archived and re-create the onlie redo log group.If that command is successful,then you issue the alter database open command.The last step,backing up the database,is very important since your previous backup will not be able to recover the database beyond the point of the cleared redo sequence number.This is because you have skipped a redo log in the redo log stream.

  • 相关阅读:
    IOS
    .net程序集强命名(签名)
    spring.net Corn表达式[转]
    SQLite日期类型【转】
    Use SQLite Instead of Local Storage In Ionic Framework【转】
    VS常用快捷键
    安装ASP.net mvc3 Installation failed with error code: (0x80070643), "安装时发生严重错误 "
    支付宝支付(沙箱环境相关配置)
    如何在Windows远程服务器中引入本地磁盘
    设计模式-策略模式
  • 原文地址:https://www.cnblogs.com/Babylon/p/7805539.html
Copyright © 2011-2022 走看看