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

本站中文解释

Oracle视图是用户以表的形式展示其逻辑模型中的数据的一种方法。其中的视图就如同覆盖数据库中的另一张表,但实际上它们可以支持多表之间的操作,以提供数据的更好的展示及读取。

Oracle视图DBA_HIST_SYSTEM_EVENT可以提供给用户有关系统性能跟踪活动的详细信息,包括服务器及数据库范围内的逻辑及物理I/O操作,及查询执行的详细记录。它可以帮助用户确定在Oracle性能分析期间的那些任务对系统性能有重大影响,以及是否应当对这些命令提供优化。

应用这个视图时,可以挑选出更具体的可能需要优化的性能参数,以获得更好的性能成果。要使用这个视图,用户可以使用方法如下:

1.首先,通过SELECT语句将所有有用的性能参数导出,比如EVENT、SERIAL#、SESSION_ID等等。

2.使用where子句筛选出不同系统性能参数,来查看系统性能指标。

3.使用GROUP BY子句将数据进行分组,以便更准确的观察系统性能指标的分布情况。

4.使用ORDER BY子句进行排序,确定各系统性能指标的最大值和最小值,以帮助定位可能存在性能问题的位置。

5.使用HERE文本返回结果集,获得可能优化的性能参数清单。

通过使用Oracle视图DBA_HIST_SYSTEM_EVENT,用户可以获得更准确的系统性能指标,进而获得可以进行优化的性能参数清单,确保系统的最佳性能。

官方英文解释

DBA_HIST_SYSTEM_EVENT displays historical information on total waits for an event.

This view contains snapshots of V$SYSTEM_EVENT.

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

EVENT_ID

NUMBER

NOT NULL

Identifier of the wait event

EVENT_NAME

VARCHAR2(64)

NOT NULL

Name of the wait event

WAIT_CLASS_ID

NUMBER

Identifier of the Class of the Wait Event

WAIT_CLASS

VARCHAR2(64)

Name of the Class of the Wait Event

TOTAL_WAITS

NUMBER

Total number of waits for the event

TOTAL_TIMEOUTS

NUMBER

Total number of timeouts for the event

TIME_WAITED_MICRO

NUMBER

Total amount of time waited for the event (in microseconds)

TOTAL_WAITS_FG

NUMBER

Total number of waits for the event, from foreground sessions

TOTAL_TIMEOUTS_FG

NUMBER

Total number of timeouts for the event, from foreground sessions

TIME_WAITED_MICRO_FG

NUMBER

Amount of time waited for the event (in microseconds), from foreground sessions

CON_DBID

NUMBER

The database ID of the PDB for the sampled session

CON_ID

NUMBER

The ID of the container that CON_DBID identifies. 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

See Also:

“V$SYSTEM_EVENT”


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