Oracle 视图 V$ASM_DISK_STAT 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图V$ASM_DISK_STAT是ASM磁盘状态视图。它可用于检索每个ASM磁盘组缓存中每个磁盘的状态,从而控制ASM磁盘的可用性,例如, 允许您跟踪磁盘空间,功能与性能等问题。

该视图可检索一般状态等变量:

1、group_number:磁盘组的编号;

2、disk_number:磁盘的编号;

3、free_mb:该磁盘上的可用空间(以兆字节为单位);

4、total_mb:该磁盘的总大小(以兆字节为单位)。

此外,ASM_DISK_STAT还显示当磁盘组创建后何时检测到每个磁盘,每个磁盘的状态(例如是否可用),以及磁盘组和磁盘的角色(从属和副)。

要使用V$ASM_DISK_STAT视图,您可以使用以下语法:

SELECT * FROM V$ASM_DISK_STAT;

例如,下面的查询将显示磁盘状态表中每个磁盘的状态:

SELECT disk_number, status
FROM v$asm_disk_stat;

官方英文解释

V$ASM_DISK_STAT displays performance statistics in the same way that V$ASM_DISK does, but without performing discovery of new disks

This results in a less expensive operation. However, since discovery is not performed, the output of this view does not include any data about disks that are new to the system.

The columns for V$ASM_DISK_STAT are the same as those for V$ASM_DISK.

Note:

In an Oracle Database instance, this view returns 0 rows when queried from a PDB.

See Also:

“V$ASM_DISK”


数据运维技术 » Oracle 视图 V$ASM_DISK_STAT 官方解释,作用,如何使用详细说明