Oracle 视图 DBA_ADVISOR_DEF_PARAMETERS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ADVISOR_DEF_PARAMETERS可以用来查看给定顾问的默认参数值。它包含三列:
ADVISOR_NAME:定义指定顾问;
PARAMETER_NAME:定义指定参数;
PARAMETER_VALUE:定义指定参数值。
可以使用DBA_ADVISOR_DEF_PARAMETERS来检查给定顾问的当前参数设置,或确认在调用顾问时将使用哪些参数。例如:
SELECT * FROM DBA_ADVISOR_DEF_PARAMETERS
WHERE ADVISOR_NAME = ‘SQL Tuning’;
这将返回SQL Tuning Advisor的各种默认参数值。
官方英文解释
DBA_ADVISOR_DEF_PARAMETERS
displays all default task parameters and their current values in the database.
When a task or object is created, the parameters and their values are copied into the private parameter table.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the advisor that supports the parameter |
|
|
|
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 ( |
|
|
|
Indicates whether the task is a system task ( |
|
|
|
Optional description of the parameter |
|
|
|
Type of the last execution. This information is optional for single-execution tasks. |