Oracle 视图 ALL_EVALUATION_CONTEXTS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_EVALUATION_CONTEXTS视图用来查看系统中定义的查询结果缓存的上下文元数据,它可以包含如下信息:
CONTEXT_NAME:对应缓存的上下文名称
OWNER:该缓存上下文的拥有者
PARSING_SCHEMA:查询参考的客户端解析模式名称
IS_QUERY_CACHE_ENABLED:逻辑值,指示是否启用查询缓存
CREATION_TIME:上下文创建时间
LAST_MODIFIED_TIME:上下文最后一次修改时间
来使用ALL_EVALUATION_CONTEXTS视图,您只需要打开SQL * Plus会话,以sys角色执行以下命令:
SELECT * FROM all_evaluation_contexts;
官方英文解释
ALL_EVALUATION_CONTEXTS describes the rule evaluation contexts accessible to the current user.
Related Views
DBA_EVALUATION_CONTEXTSdescribes all rule evaluation contexts in the database.USER_EVALUATION_CONTEXTSdescribes the rule evaluation contexts owned by the current user. This view does not display theEVALUATION_CONTEXT_OWNERcolumn.
| Column | Datatype | NULL | Description |
|---|---|---|---|
|
|
| Owner of the evaluation context |
|
|
| Name of the evaluation context |
|
| Evaluation function associated with the evaluation context, if any | |
|
| Comment specified with the evaluation context, if any |
See Also:
“DBA_EVALUATION_CONTEXTS”
“USER_EVALUATION_CONTEXTS”
编辑:一起学习网
标签:上下文,缓存,视图,名称,时间