zoukankan      html  css  js  c++  java
  • 053(二十)

    96、

    96.Examine the following command:
    SQL> ALTER TABLE booking SHRINK SPACE COMPACT;
    Which activity is performed when the preceding command is executed?
    A. The shrink operation touches every block in the BOOKING table
    B. The high-water mark (HWM) for the BOOKING table is shifted from its original position
    C. The progress of the shrink operation is saved in the bitmap blocks of the BOOKING table
    D. The data manipulation language (DML) triggers on the BOOKING table are executed because the shrink operation is internally handled by the INSERT/DELETE operation

    97、

    97.The RECYCLEBIN parameter is set to ON for your database. You drop a table, PRODUCTS, from the SCOTT schema.
    Which two statements are true regarding the outcome of this action? (Choose two)
    A. All the related indexes and views are automatically dropped
    B. The flashback drop feature can recover only the table structure
    C. Only the related indexes are dropped whereas views are invalidated
    D. The flashback drop feature can recover both the table structure and its data

    98、

    98.You plan to execute the following command to perform a Flashback Database operation in your database:
    SQL> FLASHBACK DATABASE TO TIMESTAMP (SYSDATE -5/24);
    Which two statements are true about this? (Choose two)
    A. The database must have multiplexed redo log files
    B. The database must be in the MOUNT state to execute the command
    C. The database must be in the NOMOUNT state to execute the command
    D. The database must be opened in RESTRICTED mode before this operation
    E. The database must be opened with the RESETLOGS option after the flashback operation

    99、View the Exhibit and examine the steps that you executed to create a database resource plan. 

    Subsequently, you execute the following procedure which results in an error:
    SQL> EXECUTE dbms_resources_manager.validate_pending_area ( );
    What could be the reason?
    Exhibit:

    A. The pending area is automatically submitted after the plan creation
    B. The procedure must be executed before creating the resources plan directive
    C. The SYS_GROUP resource consumer group is not included in the resource plan directive
    D. The OTHER_GROUPS resources consumer group is not included in the resource plan directive

    100、

    100.Examine the following command that is used to duplicate a database on the same host:
    RMAN> RUN
    {
    ALLOCATE AUXILIARY CHANNEL, aux 1 DEVICE TYPE DISK;
    DUPLICATE TARGET DATABASE TO auxdb SKIP READONLY;  }
    Which two statements describe the effect after the database is duplicated successfully? (Choose two)
    A. The data files of the read-only tablespaces in the target database are not duplicated
    B. The read-only tablespaces in the target database are still defined in new the database
    C. The read-only tablespaces in the target database are changed to online after duplication
    D. The data files of the read-only tablespaces in the target database get duplicated
    E. The read-only tablespaces in the target database are not defined in the new database
  • 相关阅读:
    大一上的总结和大一下学期的目标
    [转]使用c# 模拟网站登录
    RegisterStartupScript和RegisterClientScriptBlock的区别
    关于PHP header函数跳转的问题
    asp.net 动态二维数组
    生成xml
    我们应该明确几个问题
    asp+ajax asp中ajax的中文乱码
    asp.net操作XML
    PHP Header用于页面跳转要注意的几个问题总结
  • 原文地址:https://www.cnblogs.com/huanhuanang/p/5393947.html
Copyright © 2011-2022 走看看