Oracle 视图 DBA_ADVISOR_SQLA_WK_MAP 官方解释,作用,如何使用详细说明
本站中文解释
DBA_ADVISOR_SQL顾问_WK_MAP视图提供SQL顾问报告和SQL语句之间的对应关系。 此视图要求访问保留计划,其目的是检索SQL绑定到它的报告中的每一行中的SQL文本。
该 DBA_ADVISOR_SQL顾问_WK_MAP视图的主要用途是将SQL顾问报告与其输出的SQL语句进行联系。 例如,用户可能想检查SQL顾问报告中的某些特定SQL语句,而不是将SQL顾问报告的输出直接从报告中检索。查询 DBA_ADVISOR_SQL顾问_WK_MAP视图可以检索SQL文本,因此可以完成此任务。
可以使用下面的语句查询DBA_ADVISOR_SQL顾问_WK_MAP视图:
SELECT *
FROM dba_advisor_sqlw_wk_map;
官方英文解释
DBA_ADVISOR_SQLA_WK_MAP
displays the workload references for all tasks in the database.
Workload references are necessary to allow the SQL Access Advisor to find required workload data.
Related View
USER_ADVISOR_SQLA_WK_MAP
displays the workload references for the tasks owned by the current user. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the task |
|
|
|
Unique identifier of the task |
|
|
|
Name of the task |
|
|
|
Unique identifier of the workload object |
|
|
|
Name of the workload |
|
|
|
Type of workload source:
|
See Also:
“USER_ADVISOR_SQLA_WK_MAP”