Oracle 视图 V$IOFUNCMETRIC 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$IOFUNCMETRIC是一个动态视图,可以用来查询统计当前操作系统性能度量指标,提供了函数文件I/O操作的度量数据,可以显示和求出每一个不同的I/O函数文件的性能指标,如开始到结束的时间,写或读的字节,读或写的次数等。
使用V$IOFUNCMETRIC,你可以查询或统计指定时间段内每一个不同的I/O函数文件的性能指标。SQL语句语法如下:
SELECT * FROM V$IOFUNCMETRIC WHERE START_TIM>=从某时间点开始;
官方英文解释
V$IOFUNCMETRIC
displays I/O statistics information by database function for the most recent time interval period.
Column | Datatype | Description |
---|---|---|
|
|
Begin time of the interval |
|
|
End time of the interval |
|
|
Interval size (in hundredths of a second) |
|
|
Function ID |
|
|
Function name |
|
|
Single block megabytes read per second |
|
|
Single block megabytes written per second |
|
|
Multiblock megabytes read per second |
|
|
Multiblock megabytes written per second |
|
|
Single block read requests per second |
|
|
Single block write requests per second |
|
|
Multiblock read requests per second |
|
|
Multiblock write requests per second |
|
|
Average wait time (in milliseconds) |
|
|
The ID of the container to which the data pertains. Possible values include:
|