SVV_ROLE_GRANTS
使用 SVV_ROLE_GRANTS 查看在集群中显式授予的角色的角色列表。
SVV_ROLE_GRANTS 对以下用户可见:
超级用户
拥有 ACCESS SYSTEM TABLE 权限的用户
其他用户只能看到他们有权访问或拥有的身份。
表列
列名称 | 数据类型 | 描述 |
---|---|---|
role_id | 整数 | 角色 ID。 |
role_name | 文本 | 角色的名称。 |
granted_role_id | 整数 | 授予的角色的 ID。 |
granted_role_name | 文本 | 授予的角色的名称。 |
示例查询
以下示例将返回 SVV_ROLE_GRANTS 的输出。
GRANT ROLE role1 TO ROLE role2; GRANT ROLE role2 TO ROLE role3; SELECT role_name, granted_role_name FROM svv_role_grants; role_name | granted_role_name -----------+-------------------- role2 | role1 role3 | role2 (2 rows)