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 |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
|
Identifier of the wait event |
|
|
|
Name of the wait event |
|
|
Identifier of the Class of the Wait Event |
|
|
|
Name of the Class of the Wait Event |
|
|
|
Total number of waits for the event |
|
|
|
Total number of timeouts for the event |
|
|
|
Total amount of time waited for the event (in microseconds) |
|
|
|
Total number of waits for the event, from foreground sessions |
|
|
|
Total number of timeouts for the event, from foreground sessions |
|
|
|
Amount of time waited for the event (in microseconds), from foreground sessions |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
“V$SYSTEM_EVENT”