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

本站中文解释

Oracle 视图DBA_HIST_SNAP_ERROR提供有关由调入DBMS_WORKLOAD_REPOSITORY过程运行组创建的活动快照、归档快照和AWR 报告中出现的失败的详细信息。

主要用途:

1. 检测和诊断AWR 快照中存在的各种问题,例如缺少参数、不足的表空间、错误的快照提取、快照创建和收集中的错误等。

2. 确定AWR报告–> 快照时间段 两个快照的错误原因,以便解决问题。

使用方法:

使用SELECT语句从这个视图中查询快照数据,指定想要获取的列。然后指定带有选择条件的WHERE子句,以使用比较操作符筛选列值,以获得特定的行。 这样,您将能够获得有关AWR 快照中出现的故障的详细信息。

官方英文解释

DBA_HIST_SNAP_ERROR displays information about the snapshot error information in the Workload Repository.

Column Datatype NULL Description

SNAP_ID

NUMBER

NOT NULL

Unique snapshot ID

DBID

NUMBER

NOT NULL

Database ID for the snapshot

INSTANCE_NUMBER

NUMBER

NOT NULL

Instance number for the snapshot

TABLE_NAME

VARCHAR2(128)

NOT NULL

Name of the table in which the error occurred

ERROR_NUMBER

NUMBER

NOT NULL

Error number for the error encountered

STEP_ID

NUMBER

For internal use only

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 视图 DBA_HIST_SNAP_ERROR 官方解释,作用,如何使用详细说明