Oracle 视图 USER_SYS_PRIVS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图 USER_SYS_PRIVS用于存储特定用户具有的系统权限。 所有当前用户可用的系统权限可以从此视图中检索:
字段 | 描述
—- | —–
GRANTEE | 用户名
PRIVILEGE | 系统权限名
ADMIN_OPTION | 是否可对其他用户授予权限
要使用 USER_SYS_PRIVS 视图,需要登录到 Oracle 数据库实例中,并运行以下 SQL 语句,以检索当前用户拥有的系统权限:
“`SQL
SELECT GRANTEE, PRIVILEGE, ADMIN_OPTION
FROM USER_SYS_PRIVS;
“`
官方英文解释
USER_SYS_PRIVS
describes system privileges granted to the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the user, or |
|
|
|
System privilege |
|
|
|
Indicates whether the grant was with the |
|
|
|
Indicates how the grant was made. Possible values:
|
|
|
|
Indicates whether the grant was inherited from another container ( |
See Also:
“DBA_SYS_PRIVS”