Oracle 视图 V$ASM_FILEGROUP_PROPERTY 官方解释,作用,如何使用详细说明
本站中文解释
动态视图
Oracle中V$ASM_FILEGROUP_PROPERTY动态视图是一个存储在内存中的表,提供了ASM文件组属性数据,可以用来查看ASM文件组的状态,相关属性,以及文件组信息。它对于管理ASM文件组非常实用。
V$ASM_FILEGROUP_PROPERTY动态视图的字段说明如下:
GROUP_NUMBER: ASM文件组标识号;
NAME:ASM文件组名称;
GROUPDESC: ASM文件组描述;
STATUS:ASM文件组状态;
ALLOCCAP:ASM文件组伸缩容量;
COMPATIBILITY:ASM文件组兼容性模式;
HOMECOUNT:文件组主目录数量;
Path:ASM文件组路径;
FORMAT:ASM文件组块格式。
使用V$ASM_FILEGROUP_PROPERTY动态视图的方法一般是使用SQL语句进行查询,例如:
SELECT * FROM V$ASM_FILEGROUP_PROPERTY;
该语句用于查询ASM文件总群的信息数据。
官方英文解释
V$ASM_FILEGROUP_PROPERTY
describes all the properties of every Oracle Automatic Storage Management (Oracle ASM) File Group.
In both Oracle ASM and Oracle Database instances, V$ASM_FILEGROUP_PROPERTY
will display one row for every property of every file type of every File Group contained in every Disk Group mounted by the instance.
File Group properties are only displayed for File Groups on Disk Groups where COMPATIBLE.ASM
is set to 12.2
or higher.
Note:
There will not be an entry for the default File Group.
Column | Datatype | Description |
---|---|---|
|
|
Number of the Disk Group in which this File Group exists (composite primary key) |
|
|
Number associated to the File Group within its Disk Group (composite primary key) |
|
|
A 32-bit number consisting of a Disk Group number in the high-order 8 bits and a Property Number in the low-order 24 bits (for efficient access to the view) |
|
|
Number of this property in the Disk Group for the File Group (composite primary key) |
|
|
Incarnation number for this property (composite primary key) |
|
|
Type of file the property will be applied to:
The value can be |
|
|
Full name of the property. Possible values:
|
|
|
Value of the property See Oracle Automatic Storage |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
“V$ASM_FILEGROUP”