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
  • 相关阅读:
    HDU 2433 Travel (最短路,BFS,变形)
    HDU 2544 最短路 (最短路,spfa)
    HDU 2063 过山车 (最大匹配,匈牙利算法)
    HDU 1150 Machine Schedule (最小覆盖,匈牙利算法)
    290 Word Pattern 单词模式
    289 Game of Life 生命的游戏
    287 Find the Duplicate Number 寻找重复数
    283 Move Zeroes 移动零
    282 Expression Add Operators 给表达式添加运算符
    279 Perfect Squares 完美平方数
  • 原文地址:https://www.cnblogs.com/huanhuanang/p/5393947.html
Copyright © 2011-2022 走看看