本站中文解释
_MEMBERS
V$ASM_USERGROUP_MEMBERS是Oracle存储管理器(ASM)信息视图,用于显示用户组之间的成员关系,包括每个成员的归属用户组信息、是否来源于ADMINISTER_DISK_GROUPS角色、添加的日期和状态。
该视图可以用于查找备份数据库中存在的ASM用户组。
使用下面的语句可以获得特定ASM用户组下所有成员信息:
SELECT USER_GROUP, MEMBER, FROM_ADMIN_ROLE, CREATED_TIME, STATE FROM V$ASM_USERGROUP_MEMBERS WHERE USER_GROUP=”;
其中 ” 指代ASM用户组的名称。
官方英文解释
V$ASM_USERGROUP
displays the creator for each Oracle Automatic Storage Management (Oracle ASM) File Access Control group.
Column | Datatype | Description |
---|---|---|
|
|
Oracle ASM disk group number |
|
|
Number of the user group |
|
|
A 32-bit number consisting of a disk group number in the high-order 8 bits and a user group number in the low-order 24 bits (for efficient access to the view) |
|
|
Incarnation number of the user group |
|
|
User group owner identified by a unique number |
|
|
Incarnation number of the user group owner |
|
|
User group name |
|
|
The ID of the container to which the data pertains. Possible values include:
For this view, the value is always |
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