zoukankan      html  css  js  c++  java
  • 052-240(新增70题2018)

    You are using the following command to clear the log file group:
    ALTER DATABASE CLEAR LOGFILE GROUP 2;
    In which case would the command be successful?
    A. Group 2 is the active group.
    B. Group 2 is the current group.
    C. Database is in the MOUNT state.
    D. Group 2 has been already archived.
    Answer: D
    Clearing a Redo Log File

    A redo log file might become corrupted while the database is open, and ultimately stop database activity because archiving cannot continue. In this situation the ALTER DATABASE CLEAR LOGFILE statement can be used to reinitialize the file without shutting down the database.

    The following statement clears the log files in redo log group number 3:

    ALTER DATABASE CLEAR LOGFILE GROUP 3;
    

    This statement overcomes two situations where dropping redo logs is not possible:

    • If there are only two log groups

    • The corrupt redo log file belongs to the current group

    If the corrupt redo log file has not been archived, use the UNARCHIVED keyword in the statement.

    ALTER DATABASE CLEAR UNARCHIVED LOGFILE GROUP 3;
    

    This statement clears the corrupted redo logs and avoids archiving them. The cleared redo logs are available for use even though they were not archived.

  • 相关阅读:
    vue bus 中央事件总线
    0时间复杂度
    stack 数据结构
    es6 class
    directives 自定义指令
    node中间件
    数据结构博客清单
    TCP/IP 协议栈博客清单
    Java 面向对象:接口
    Java 面向对象:Object 类
  • 原文地址:https://www.cnblogs.com/Babylon/p/8623696.html
Copyright © 2011-2022 走看看