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

DROP PUBLICATION

DROP PUBLICATION <refpurpose>remove a publication</refpurpose> — パブリケーションを削除する

概要

DROP PUBLICATION [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]

説明

<title>Description</title>

<command>DROP PUBLICATION</command> removes an existing publication from the database. DROP PUBLICATIONは既存のパブリケーションをデータベースから削除します。

A publication can only be dropped by its owner or a superuser. パブリケーションはその所有者またはスーパーユーザによってのみ削除することができます。

パラメータ

<title>Parameters</title>
IF EXISTS

Do not throw an error if the publication does not exist. A notice is issued in this case. パブリケーションが存在しない場合でもエラーになりません。 この場合、注意メッセージが発行されます。

name

The name of an existing publication. 既存のパブリケーションの名前です。

CASCADE
RESTRICT

These key words do not have any effect, since there are no dependencies on publications. パブリケーションに依存するものはないので、これらのキーワードは何も効果がありません。

<title>Examples</title>

Drop a publication: パブリケーションを削除します。

DROP PUBLICATION mypublication;

互換性

<title>Compatibility</title>

<command>DROP PUBLICATION</command> is a <productname>PostgreSQL</productname> extension. DROP PUBLICATIONPostgreSQLの拡張です。

関連項目

<title>See Also</title> CREATE PUBLICATION, ALTER PUBLICATION