Oracle 视图 V$EVENTMETRIC 官方解释,作用,如何使用详细说明
本站中文解释
_HISIORY
Oracle数据库提供了视图V$EVENTMETRIC_HISTORY来查看系统中各个数据库事件的性能数据。它显示了一段时间内(如一小时,一天,一周等)各个事件(如等待事件,消耗时间等)的性能数据。
要使用V$EVENTMETRIC_HISTORY视图,首先登录到Oracle数据库,然后创建一个数据库会话并在其中实行该视图:
SQL> select * from V$EVENTMETRIC_HISTORY;
该语句将显示各个数据库事件的性能数据,其帮助DBA更好地理解系统性能,并将其加以优化。
官方英文解释
V$EVENTMETRIC
displays values of wait event metrics for the most recent 60-second interval.
Column | Datatype | Description |
---|---|---|
|
| Begin time of the interval |
|
| End time of the interval |
|
| Interval size (in hundredths of a second) |
|
| Number of the event |
|
| Identifier of the event |
|
| Number of sessions waiting at the end of the interval |
|
| Time waited (in hundredths of a second) |
|
| Number of times waited |
|
| Time waited (in hundredths of a second), from foreground sessions |
|
| Number of times waited, from foreground sessions |
|
| The ID of the container to which the data pertains. Possible values include:
|
编辑:广州明生医药有限公司
标签:数据库,视图,性能,事件,数据