role_table_grants
#
The view <literal>role_table_grants</literal> identifies all
privileges granted on tables or views where the grantor or grantee
is a currently enabled role. Further information can be found
under <literal>table_privileges</literal>. The only effective
difference between this view
and <literal>table_privileges</literal> is that this view omits
tables that have been made accessible to the current user by way of
a grant to <literal>PUBLIC</literal>.
role_table_grants
ビューは、現在有効なロールが譲与者または被譲与者であるテーブルやビュー上に与えられた全ての権限を示します。
詳細な情報はtable_privileges
の中にあります。
このビューとtable_privileges
との間の実質的な違いは、このビューでは現在のユーザがPUBLIC
に与えられた権限によりアクセスできるようになったテーブルを省略していることだけです。
表35.35 role_table_grants
の列
Column Type 列 型 Description 説明 |
---|
Name of the role that granted the privilege 権限を与えたロールの名前です。 |
Name of the role that the privilege was granted to 権限を与えられたロールの名前です。 |
Name of the database that contains the table (always the current database) テーブルを持つデータベースの名前です(常に現在のデータベースです)。 |
Name of the schema that contains the table テーブルを持つスキーマの名前です。 |
Name of the table テーブルの名前です。 |
Type of the privilege: <literal>SELECT</literal>,
<literal>INSERT</literal>, <literal>UPDATE</literal>,
<literal>DELETE</literal>, <literal>TRUNCATE</literal>,
<literal>REFERENCES</literal>, or <literal>TRIGGER</literal>
権限の種類は、
|
<literal>YES</literal> if the privilege is grantable, <literal>NO</literal> if not
この権限を付与可能な場合は |
In the SQL standard, <literal>WITH HIERARCHY OPTION</literal>
is a separate (sub-)privilege allowing certain operations on
table inheritance hierarchies. In PostgreSQL, this is included
in the <literal>SELECT</literal> privilege, so this column
shows <literal>YES</literal> if the privilege
is <literal>SELECT</literal>, else <literal>NO</literal>.
SQL標準では、 |