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

本站中文解释

Oracle视图V$ALERT_TYPES提供了一些关于内部Oracle警告消息的信息。它显示了可能导致服务中断或需要短期及长期维护的事件原因。这些警告消息可用于获取警告工具的元数据信息以及建议的响应行为。

使用V$ALERT_TYPES的一般步骤是:在该视图中检索需要的信息。使用SELECT语句来挑选V$ALERT_TYPES视图字段。由于V$ALERT_TYPES视图包含Oracle内部警告信息,因此必须使用管理访问权限(系统管理员等)来查看该視圖。

例如,在运行SELECT命令检索所有已知警报类型:

SELECT Alert_Type FROM V$ALERT_TYPES;

官方英文解释

V$ALERT_TYPES displays information about server alert types.

Column Datatype Description

REASON_ID

NUMBER

ID of the alert reason

OBJECT_TYPE

VARCHAR2(64)

Object type

TYPE

VARCHAR2(9)

Alert type:

  • Stateful

  • Stateless

GROUP_NAME

VARCHAR2(64)

Group name

SCOPE

VARCHAR2(8)

Scope:

  • Database

  • Instance

INTERNAL_METRIC_CATEGORY

VARCHAR2(64)

Internal metric category

INTERNAL_METRIC_NAME

VARCHAR2(64)

Internal metric name

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


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