Oracle 视图 V$ASM_USER 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$ASM_USER是一个今天数据字典视图,具有以下每个列:
USER_NUMBER:给定存储管理用户的编号。
USER_NAME:给定存储管理用户的名称。
USER_TYPE:指定存储管理用户类型。
V$ASM_USER视图用于显示和管理所支持的存储管理用户。它可以帮助DBA了解已经创建的存储管理用户名称、类型和编号等信息。要查看V$ASM_USER视图的内容,可以使用以下SQL查询:
SELECT *
FROM V$ASM_USER;
官方英文解释
V$ASM_USER
displays the effective operating system user names of connected database instances and of file owners.
Column | Datatype | Description |
---|---|---|
|
|
Oracle ASM disk group number |
|
|
Oracle ASM internal unique user number |
|
|
A 32-bit number consisting of a disk group number in the high-order 8 bits and a user number in the low-order 24 bits (for efficient access to the view) |
|
|
Incarnation number of the user |
|
|
Oracle ASM cluster ID. The |
|
|
Operating system user ID |
|
|
Operating system user 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