Oracle 视图 ALL_EVALUATION_CONTEXT_VARS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_EVALUATION_CONTEXT_VARS 视图显示当前模式下定义的评估上下文变量(也用于Oracle Data Mining)。该视图允许用户查看和维护评估上下文变量。
要使用 ALL_EVALUATION_CONTEXT_VARS 视图,首先需要创建一个评估上下文:
CREATE EDGE VIEW customers AS SELECT * FROM customer;
之后,就可以使用 ALL_EVALUATION_CONTEXT_VARS 视图,如下所示:
SELECT VARNAME, VARTYPE, VARVALUE
FROM ALL_EVALUATION_CONTEXT_VARS
WHERE CONTEXT_NAME = ‘CUSTOMERS’;
此查询将返回与指定评估上下文相关的变量信息,诸如变量名称、类型和值。
官方英文解释
ALL_EVALUATION_CONTEXT_VARS
describes the variables in the rule evaluation contexts accessible to the current user.
Related Views
DBA_EVALUATION_CONTEXT_VARS
describes the variables in all rule evaluation contexts in the database.USER_EVALUATION_CONTEXT_VARS
describes the variables in the rule evaluation contexts owned by the current user. This view does not display theEVALUATION_CONTEXT_OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the evaluation context |
|
|
| Name of the evaluation context |
|
| Name of a variable in the evaluation context | |
|
| Datatype of the variable | |
|
| Function used to retrieve the value of the variable; NULL for variables that are not implicit | |
|
| Function used to retrieve the result of method invocation on the variable. Such a function can speed up evaluation, if there are many simple rules that invoke the method on the variable. |
See Also:
“DBA_EVALUATION_CONTEXT_VARS”
“USER_EVALUATION_CONTEXT_VARS”
编辑:一起学习网
标签:上下文,视图,变量,英文,所示