Oracle 视图 DBA_ADVISOR_PARAMETERS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ADVISOR_PARAMETERS是用来查询所有SQL优化器参数的用途的视图。该视图的记录由ADVISOR_ID列和PARAMETER_VALUE列组成,其中ADVISOR_ID列指定使用该视图的SQL优化器,而PARAMETER_VALUE列则保存为SQL优化器设置的参数值。使用该视图时,可以通过查询该视图获取特定SQL优化器的参数值,查询SQL优化器参数的语法可以如下所示:
SELECT parameter_value FROM dba_advisor_parameters WHERE advisor_id = ”;
官方英文解释
DBA_ADVISOR_PARAMETERS
displays all task parameters and their current values in the database.
This data is accessible by all tasks.
Related View
USER_ADVISOR_PARAMETERS
displays the task parameters and their current values for the tasks owned by the current user. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the task or workload object |
|
|
|
|
Unique identifier number of the task or workload object |
|
|
Name of the task or workload object |
|
|
|
|
Name of the parameter |
|
|
|
Value of the parameter. Numeric parameter values are converted to a string equivalent. Possible keywords as values:
|
|
|
Datatype of the parameter:
|
|
|
|
Indicates whether the parameter value is set to the advisor’s default value ( |
|
|
|
Indicates whether the task execution process sets the parameter value ( |
|
|
|
Indicates whether the parameter value can be modified when the task is not in its initial state ( |
|
|
|
Optional description of the parameter |
|
|
|
For advisors supporting multiple executions, the type of execution this parameter pertains to |
See Also:
“USER_ADVISOR_PARAMETERS”