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

    81、

    81.Which two statements are true regarding a PL/SQL package body? (Choose two.) 
    A. It cannot be created without a package specification. 
    B. It cannot invoke subprograms defined in other packages. 
    C. It can contain only the subprograms defined in the package specification. 
    D. It can be changed and recompiled without making the package specification invalid. 
    Answer: AD
    View Code

    82、

    82.In your database instance, the user sessions are connected to the database server from the remote 
    machines. 
    You want to achieve the following for these users: 
    1. The user account must be locked after four unsuccessful login attempts. 
    2. The user must be prompted to change the password at regular intervals.  
    3. The user may not have more than three simultaneous sessions. 
    4. The user session must automatically be logged off if more than 10 minutes elapsed time used. 
    How would you accomplish the above? 
    A. By assigning profiles for the users 
    B. By implementing Fine-Grained Auditing (FGA) 
    C. By granting a secure application role to the users 
    D. By implementing the Database Resource Manager plan 
    Answer: A
    View Code

    83、

    83.Observe the information in the columns: 
    1. The SGA a. Text and parsed forms of all SQL statements 
    2. The cursor state b. Run-time memory values for the SQL statement, such as rows retrieved 
    3. User-session data c. Security and resource usage information 
    4. The stack space d. Local variables for the process 
    Which option has the correct match between the memory areas and their contents? 
    A. 1-c, 2-b, 3-d, 4-a 
    B. 1-b, 2-c, 3-d, 4-a 
    C. 1-a, 2-b, 3-c, 4-d 
    D. 1-a, 2-b, 3-d, 4-c
    Answer: C 
    View Code

    84、

    84.You are using Enterprise Manager to schedule backups for your database. 
    Which type of script would be generated by the backup scheduler? 
    A. XML script 
    B. PL/SQL script 
    C. Operating system script 
    D. Recovery Manager (RMAN) script
    Answer: D
    View Code

    85、

    85.Note the following functionalities of various background processes: 
    1. Record the checkpoint information in data file headers. 
    2. Perform recovery at instance startup. 
    3. Cleanup unused temporary segments. 
    4. Free the resources used by a user process when it fails. 
    5. Dynamically register database services with listeners. 
    6. Monitor sessions for idle session timeout. 
    Which option has the correct functionalities listed for a background process? 
    A. Archiver Process (ARCn): 1, 2, 5 
    B. System Monitor Process (SMON): 1, 4, 5 
    C. Process Monitor Process (PMON): 4, 5, 6 
    D. Database Writer Process (DBWn): 1, 3, 4 
    Answer: C
    View Code
  • 相关阅读:
    python—logger
    print默认在末尾添加一个换行符,但其实也可以不用!
    Python做int()强制类型转换的时候,小数是如何取舍的?
    Python基础之好玩的字符串格式化f-string格式
    【奔走相告】- Github送福利:用户可免费创建私有代码库啦
    我30岁了,转行学编程可以吗? 排除法告诉你答案
    Python基础之好玩的字符串格式化之类C风格
    Python基础之白话说函数
    变量 和 注释
    什么是编程语言,什么是Python解释器
  • 原文地址:https://www.cnblogs.com/huanhuanang/p/5356592.html
Copyright © 2011-2022 走看看