DROP USER MAPPING <refpurpose>remove a user mapping for a foreign server</refpurpose> — 外部サーバ用のユーザマップを削除します。
DROP USER MAPPING [ IF EXISTS ] FOR {user_name
| USER | CURRENT_ROLE | CURRENT_USER | PUBLIC } SERVERserver_name
<command>DROP USER MAPPING</command> removes an existing user
mapping from foreign server.
DROP USER MAPPING
は既存のユーザマップを外部サーバから削除します。
The owner of a foreign server can drop user mappings for that server
for any user. Also, a user can drop a user mapping for their own
user name if <literal>USAGE</literal> privilege on the server has been
granted to the user.
外部サーバの所有者は任意のユーザに対するそのサーバ向けのユーザマップを削除することができます。
また、サーバ上でUSAGE
権限がユーザに付与されている場合、ユーザは自身の持つユーザ名に対応するユーザマップを削除することができます。
IF EXISTS
Do not throw an error if the user mapping does not exist. A notice is issued in this case. ユーザマップが存在しない場合にエラーを発生しません。 この場合、注意が発行されます。
user_name
User name of the mapping. <literal>CURRENT_ROLE</literal>, <literal>CURRENT_USER</literal>,
and <literal>USER</literal> match the name of the current
user. <literal>PUBLIC</literal> is used to match all present and
future user names in the system.
対応付けされるユーザ名です。
CURRENT_ROLE
、CURRENT_USER
とUSER
は現在のユーザの名前に対応します。
PUBLIC
は、システム上の現在および将来のユーザ名すべてに対応させるために使用します。
server_name
Server name of the user mapping. ユーザマップのサーバ名です。
Drop a user mapping <literal>bob</literal>, server <literal>foo</literal> if it exists:
存在する場合、サーバfoo
からユーザマップbob
を削除します。
DROP USER MAPPING IF EXISTS FOR bob SERVER foo;
<command>DROP USER MAPPING</command> conforms to ISO/IEC 9075-9
(SQL/MED). The <literal>IF EXISTS</literal> clause is
a <productname>PostgreSQL</productname> extension.
DROP USER MAPPING
はISO/IEC 9075-9 (SQL/MED)に従います。
IF EXISTS
句はPostgreSQLの拡張です。