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

本站中文解释

Oracle视图DBA_ADVISOR_DIR_INSTANCES存储了由Oracle ADDM服务地址分析器分析实例的列表和每个实例的分析概要信息。

本视图用于查看全局Oracle ADDM服务地址分析器(GASA)在多个实例上运行的实例状态,以及每个实例上的分析状态和时间戳,以及可供用户使用的ADDM服务地址分析器的会话ID。

要使用Oracle视图DBA_ADVISOR_DIR_INSTANCES,可以执行下面的SQL查询:

SELECT *
FROM DBA_ADVISOR_DIR_INSTANCES;

官方英文解释

DBA_ADVISOR_DIR_INSTANCES provides information about all global instances for a directive.

Column Datatype NULL Description

DIRECTIVE_ID

NUMBER

NOT NULL

Unique id for directive. The directive management engine automatically generates ID numbers.

INSTANCE_ID

NUMBER

NOT NULL

Unique id for the directive instance. The directive management engine automatically generates ID numbers.

INSTANCE_NAME

VARCHAR2(128)

NOT NULL

A user-assigned name for the directive instance.

DATA

CLOB

NOT NULL

An XML document that gives meaningful default values for all parts of the directive.


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