Oracle 视图 V$IOSTAT_FUNCTION_DETAIL 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$IOSTAT_FUNCTION_DETAIL显示特定CISC功能的I/O状态信息。这个可选的状态信息在V$IOSTAT视图中看不到,但是在V$IOSTAT_FUNCTION_DETAIL视图中可以查看。
使用V$IOSTAT_FUNCTION_DETAIL视图可以帮助数据库管理员更好地理解I/O情况,因此可以对系统进行更有效的运作优化。
以下是使用V$IOSTAT_FUNCTION_DETAIL视图的步骤:
1. 打开SQL Plus会话,登录到Oracle数据库。
2. 执行以下查询:
“`SQL
SELECT FUNCTION, STATISTICS, VALUE
FROM V$IOSTAT_FUNCTION_DETAIL
ORDER BY FUNCTION, STATISTICS;
“`
3. 根据FUNCTION,STATISTICS和VALUE列来查看I/O情况。
官方英文解释
V$IOSTAT_FUNCTION_DETAIL
displays disk I/O statistics for database functions (such as the LGWR and DBWR), broken down by file type.
Column | Datatype | Description |
---|---|---|
|
|
Function ID |
|
|
Function name:
|
|
|
File type ID |
|
|
File type name:
|
|
|
Number of megabytes read via single block read requests |
|
|
Number of megabytes written via single block write requests |
|
|
Number of megabytes read via multiblock read requests |
|
|
Number of megabytes written via multiblock write requests |
|
|
Number of single block read requests |
|
|
Number of single block write requests |
|
|
Number of multiblock read requests |
|
|
Number of multiblock write requests |
|
|
Number of synchronous I/O waits by functionality |
|
|
Total synchronous I/O wait time (in milliseconds) |
|
|
The ID of the container to which the data pertains. Possible values include:
|