Oracle 视图 V$ASM_DISK_IOSTAT 官方解释,作用,如何使用详细说明
本站中文解释
V$ASM_DISK_IOSTAT是Oracle ASM里面的一个数据视图,它可以用来显示ASM磁盘的I/O统计信息,包括每秒的请求次数,失败次数,读写延迟,磁盘的最大I/O时间等。该视图可以帮助用户更好地了解ASM磁盘的使用情况,从而及时发现磁盘使用情况异常的地方。
使用V$ASM_DISK_IOSTAT,可以使用下列SQL来获取ASM磁盘的I/O统计信息:
SELECT GROUP_NUMBER,DISK_NUMBER,BYTES,REQUESTS,SECTOR_SIZE FROM V$ASM_DISK_IOSTAT;
官方英文解释
V$ASM_DISK_IOSTAT
displays information about disk I/O statistics for each Oracle Automatic Storage Management (Oracle ASM) client.
If this view is queried from the database instance, only the rows for that instance are shown.
Column | Datatype | Description |
---|---|---|
|
|
Identifier for the DB/ADVM instance client |
|
|
Unique database name ( |
|
|
Name of the cluster |
|
|
Number of the disk group containing the disk |
|
|
Number assigned to the disk within its disk group |
|
|
Name of the failure group to which the disk belongs |
|
|
This is the name of the site to which the disk belongs |
|
|
Total number of I/O read requests for the disk |
|
|
Total number of I/O write requests for the disk |
|
|
Total number of failed I/O read requests for the disk |
|
|
Total number of failed I/O write requests for the disk |
|
|
Number of read I/Os that are timed out |
|
|
Number of write I/Os that are timed out |
|
|
Total I/O time (in seconds) for read requests for the disk if the |
|
|
Total I/O time (in seconds) for write requests for the disk if the |
|
|
Total number of bytes read from the disk |
|
|
Total number of bytes written from the disk |
|
|
This column is not meaningful and its value is always |
|
|
This column is not meaningful and its value is always |
|
|
This column is not meaningful and its value is always |
|
|
This column is not meaningful and its value is always |
|
|
Number of reads from the disk |
|
|
Number of writes to the disk |
|
|
Number of bytes read from the disk |
|
|
Number of bytes written to the disk |
|
|
The ID of the container to which the data pertains. Possible values include:
For this view, the value is always |
Footnote 1 Intelligent Data Placement is desupported starting with Oracle Database 21c. As a result, the HOT_READS
, HOT_WRITES
, HOT_BYTES_READ
, and HOT_BYTES_WRITTEN
columns are no longer meaningful and always return 0
, and the COLD_READS
, COLD_WRITES
, COLD_BYTES_READ
, and COLD_BYTES_WRITTEN
columns return statistics for the entire disk.
Note:
In an Oracle Database instance, this view returns 0 rows when queried from a PDB.
See Also:
Oracle Automatic Storage
Management Administrator’s Guide for additional information about using views to display Oracle ASM information