8.Observe the information in the columns:

来源:互联网 发布:程序流程图制作软件 编辑:程序博客网 时间:2024/05/21 21:38
8.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-c, 2-b, 3-d, 4-a
C.1-a, 2-b, 3-c, 4-d
D.1-a, 2-b, 3-d, 4-c
答案:C
解析:
1.SGA,System Global Area,至少包括三个部分:数据库高速缓冲区,共享池,sga 固定区,
其中共享池包括库高速缓存和数据字典高速缓存,库高速缓存又包括共享 sql 区和共享 pl/sql 区
2.the cursor state:cursor状态区,表示会话当前所使用的sql语句的处理状态
3.User-session data,用户会话数据,应该归属于会话信息区,主要包括会话的用户权限和优化统计信息
4.The stack space:堆栈区,包括其他的会话变量
0 0
原创粉丝点击