Oracle 视图 DBA_ADVISOR_SQLW_TEMPLATES 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图是安装数据字典视图,它是适用于定制SQL优化报告的SQL模板视图。该视图存储系统自动生成的SQL优化建议模板,模板可以用作SQL Workload Manager (SWLM) rulesets的源和目的的SQL,以实现性能和资源优化。可以通过在DBA_ADVISOR_SQLW_TEMPLATES视图中查询,将SWL模式导入到rule set中来使用,以便进行SQL优化。

官方英文解释

DBA_ADVISOR_SQLW_TEMPLATES displays an aggregated picture of all SQLWkld template objects in the database.

Related View

USER_ADVISOR_SQLW_TEMPLATES displays an aggregated picture of the SQLWkld template objects owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

Owner of the workload object

WORKLOAD_ID

NUMBER

NOT NULL

Unique identifier number of the workload object

WORKLOAD_NAME

VARCHAR2(128)

Unique name of the workload

DESCRIPTION

VARCHAR2(256)

User-specified description of the workload

CREATE_DATE

DATE

NOT NULL

Date on which the workload object was created

MODIFY_DATE

DATE

NOT NULL

Date of last update to the current workload

SOURCE

VARCHAR2(128)

Optional object or template on which the object was based

READ_ONLY

VARCHAR2(5)

Indicates whether the workload template can be modified or deleted (TRUE) or not (FALSE)

See Also:

“USER_ADVISOR_SQLW_TEMPLATES”


数据运维技术 » Oracle 视图 DBA_ADVISOR_SQLW_TEMPLATES 官方解释,作用,如何使用详细说明