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

    76、

    76.Identify three key features of ASM. (Choose three.)
    A. file striping
    B. allocation unit mirroring
    C. automatic disk rebalancing
    D. automatic file size increment 
    E. automatic undo management
    Answer: ABC
    View Code

    77、

    77.You have three production databases, HRDB, FINDB, and ORGDB, that use the same ASM instance. 
    At the end of the day, while all three production database instances are running, you execute the following command on the ASM instance :
    SQL> shutdown immediate;
    What is the result of executing this command?
    A. The ASM instance is shut down, but the other instances are still running.
    B. It results in an error because other database instances are connected to it.
    C. All the instances, including the ASM instance, are shut down in the IMMEDIATE mode.
    D. HRDB, FINDB, and ORGDB instances are shut down in the ABORT mode and the ASM instance is shut down in the IMMEDIATE mode.
    Answer: B
    View Code

    78、

    78.You enable block change tracking. You issue the following command:
    BACKUP INCREMENTAL LEVEL 0 DATABASE;
    The next day, you issue the following command:
    BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE;
    Which statement about the use of the change tracking file is true?
    A. RMAN reads the block change tracking file only when it performs the incremental level 0 backup.
    B. RMAN reads the block change tracking file when it performs both incremental backups.
    C. RMAN reads the block change tracking file only when it performs the incremental level 1 backup.
    D. RMAN does not read the block change tracking file when it performs either incremental backup.
    Answer: C
    View Code

    参考:rman--增量备份

    79、

    79.You executed the following command:
    RMAN> RECOVER COPY OF DATAFILE '/u01/app/oracle/oradata/orcl/users01.dbf';
    Which statement regarding the above command is correct?
    A. The '/u01/app/oracle/oradata/orcl/users01.dbf' data file is recovered from the image copy.
    B. The '/u01/app/oracle/oradata/orcl/users01.dbf' data file is recovered from the last incremental backup.
    C. Image copies of the '/u01/app/oracle/oradata/orcl/users01.dbf' data file are updated with all changes up to incremental backup SCN. 
    D. Image copies of the '/u01/app/oracle/oradata/orcl/users01.dbf' data file are recovered using the above command if data file recovery fails.
    Answer: C
    View Code

    参考:rman--增量备份

    80、

    80.Which two statements regarding a SQL profile are true? (Choose two.)
    A. It is built by Automatic Tuning Optimizer.
    B. It cannot be stored persistently in the data dictionary.
    C. It can be used by the query optimizer automatically.
    D. It can be created manually by using the CREATE PROFILE command.
    Answer: AC
    
    A SQL profileis a set of auxiliary information thatis built during automatic tuning of a SQL statement. 
    
    When you accepta profile, the database creates the profile and stores it persistently in the data dictionary. 
    If a user issues a statement for which a profile has been built, then the query optimizer (in normal mode) uses both the environment and the SQL profile to build a well-tuned plan.
    View Code
  • 相关阅读:
    循环计时器
    在一个表格里,超过一定宽度字符串进行截取显示点点,鼠标移上去显示全
    判断单选框是否被选中
    美化的select下拉框
    js获取网页高度
    Bootstrap的使用。。。
    解决网站出现GET .woff 404 (Not Found)的问题
    Bootstrap 字体图标(Glyphicons)
    一个设置为display:none;的div,在用.height()方法获取不到它的高,获取到的高度为0.
    substring() slice() substr()的区别联系
  • 原文地址:https://www.cnblogs.com/huanhuanang/p/5389780.html
Copyright © 2011-2022 走看看