zoukankan      html  css  js  c++  java
  • 053-218

    Your database is running in ARCHIVELOG mode. You are performing a user-managed backup of the DATA1 tablespace. You place the DATA1 tablespace in backup mode by issuing the following statement:
    ALTER TABLESPACE data1 BEGIN BACKUP;
    While you are performing the backup, an error occurs that causes the instance to terminate abnormally.
    Which statement about the DATA1 tablespace is true?
    A. The DATA1 tablespace is automatically taken out of backup mode when the instance aborts.
    B. If you restart the database, the DATA1 tablespace will be automatically taken out of backup mode when the database is opened.
    C. If you restart the database, the DATA1 tablespace will be automatically taken out of backup mode when the database is mounted.
    D. If you restart the database, the database will not be opened.

    backup mode不能启动数据库,Alter tablespace data1 end backup;alter databse end backup;
      此题考点是手动管理的备份恢复。当你忘记结束备份模式时,才开库的时候由于是异常终止,需要实例恢复,会一直在不一致的状态无法 open。此时应该在 mout 状态手动执行 end backup 命令,再 alter databaseopen 数据库。
      注意:不要在任何从备份重建的备份上使用 alter database end backup。你需要对这些数据文件运行recover 命令,然后对那些确保是当前的数据文件执行 end backup 命令。

  • 相关阅读:
    登录的验证码
    分页效果
    弹出新窗口
    添加软键盘
    左侧菜单
    制作导航
    DEV第三方控件的GalleryControl控件
    div悬浮在屏幕的中间及点击按钮关闭弹出框
    鼠标经过图片时向前突出并放大图片
    UIImageView实现加载网络gif图片
  • 原文地址:https://www.cnblogs.com/Babylon/p/7845263.html
Copyright © 2011-2022 走看看