zoukankan      html  css  js  c++  java
  • 052(三十七)

    181、

    181.Given below is a list of scenarios: 
    1. A user terminates his session abnormally. 
    2. The connection between the server and the client application terminates because of a network failure. 
    3. A schema is accidentally dropped. 
    4. The tablespace is accidentally dropped from the database.  
    5. The hard disk gets corrupted and the data files in the disk are lost. 
    6. The database instance abnormally shuts down because of power failure. 
    Which scenarios require DBA intervention to perform recovery? 
    A. 1, 3, and 6 
    B. 4, 5, and 6 
    C. 3, 4, and 5 
    D. 1, 2, and 6 
    Answer: C
    View Code

    182、

    182.View the Exhibit1, which shows the options that are selected to create the user SL_REP. 
    View the Exhibit2 and examine the contents of DATABASE_PROPERTIES. 
    Which two statements are true regarding this user? (Choose two.) 
    A. The user is authenticated by the operating system. 
    B. The objects created by the user are placed in the USERS tablespace. 
    C. The user does not require quota on the TEMP tablespace to perform sort operations. 
    D. The user is forced to change the password at the first login to the database instance. 
    E. The objects created by the user in future are unlocked to be accessed by all the users in the database by default. 

    183、

    183.Which two statements are true regarding B-tree index? (Choose two.) 
    A. The leaf blocks in the index are doubly linked. 
    B. The leaf node stores a bitmap for each key value. 
    C. The rows with NULL value in key columns also have entries in the index. 
    D. The deletion of a row from the table causes a logical deletion in index leaf block and the space becomes available for the new leaf entry. 
    Answer: AD
    View Code

    184、

    184.In your production database, data manipulation language (DML) operations are executed on the SALES table. 
    You have noticed some dubious values in the SALES table during the last few days. 
    You are able to track users, actions taken, and the time of the action for this particular period but the changes in data are not tracked. 
    You decide to keep track of both the old data and new data in the table long with the user information. 
    What action would you take to achieve this task? 
    A. Apply fine-grained auditing. 
    B. Implement value-based auditing. 
    C. Impose standard database auditing to audit object privileges. 
    D. Impose standard database auditing to audit SQL statements.
    Answer: B
    
    value-based auditing进行数据库审计时会记录审计对象中发生的插入、更新和删除操作,但是不会捕获更改的实际值
    View Code

    185、

    185.You are managing an Oracle Database 11g database. The database is open, and you plan to perform Recovery Manager (RMAN) backups.
    Which three statements are true about these backups? (Choose three.)
    A. The backups would be consistent.  
    B. The backups would be inconsistent. 
    C. The backups would be possible only if the database is running in ARCHIVELOG mode. 
    D. The backups would be possible only if the database is running in NOARCHIVELOG mode. 
    E. The backups need to be restored and the database has to be recovered in case of a media failure. 
    Answer: BCE
    
    RMAN支持脱机备份和联机备份。
    View Code
  • 相关阅读:
    c++引用(reference)
    c++ 三目运算符功能增强
    C++ “新增”bool类型关键字
    C++ struct
    C++命名空间(namespace)
    基于python 实现KNN 算法
    Chrome 快捷键使用
    WOE(weight of evidence, 证据权重)
    python 命令运行环境下 ModuleNotFoundError: No module named 'Test'
    基于python 信用卡评分系统 的数据分析
  • 原文地址:https://www.cnblogs.com/huanhuanang/p/5366520.html
Copyright © 2011-2022 走看看