Oracle 视图 DBA_GLOBAL_CONTEXT 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图DBA_GLOBAL_CONTEXT用来存储全局上下文信息,包含系统 或会话范围内所有客户端会话中处于活动状态的全局上下文参数及值信息。这些全局上下文信息可以用于在系统或会话中追踪配置信息,可能涉及多版本的事件类型、计算机类型等等。
使用方法:
1.首先创建全局上下文:对于某一特定的会话或系统,可以使用DBMS_SESSION.SET_CONTEXT()和DBMS_SYSTEM.SET_CONTEXT()函数来设置全局上下文。
2.查询DBA_GLOBAL_CONTEXT视图,可以查看当前系统或会话的全局上下文。
3.可以使用DBMS_SESSION.RESET_CONTEXT()和DBMS_SYSTEM.RESET_CONTEXT()函数来重置上下文,以便可以删除或者修改特定的全局上下文参数。
官方英文解释
DBA_GLOBAL_CONTEXT
displays the definition (name, schema, and package) of all global contexts created in the database.
This view is a subset of DBA_CONTEXT
, which describes all contexts, including global contexts.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the context namespace |
|
|
|
Schema of the package that administers the globally accessible context |
|
|
|
Package that administers the globally accessible context |
See Also:
-
“DBA_CONTEXT”
-
Oracle Database Security
Guide for more information about using global application contexts -
Oracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_SESSION.SET_CONTEXT
procedure