バージョンごとのドキュメント一覧

DROP USER MAPPING

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 } SERVER server_name

説明

<title>Description</title>

<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権限がユーザに付与されている場合、ユーザは自身の持つユーザ名に対応するユーザマップを削除することができます。

パラメータ

<title>Parameters</title>
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_ROLECURRENT_USERUSERは現在のユーザの名前に対応します。 PUBLICは、システム上の現在および将来のユーザ名すべてに対応させるために使用します。

server_name

Server name of the user mapping. ユーザマップのサーバ名です。

<title>Examples</title>

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;

互換性

<title>Compatibility</title>

<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の拡張です。

関連項目

<title>See Also</title> CREATE USER MAPPING, ALTER USER MAPPING