DROP PUBLICATION <refpurpose>remove a publication</refpurpose> — パブリケーションを削除する
DROP PUBLICATION [ IF EXISTS ] name
[, ...] [ CASCADE | RESTRICT ]
<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. パブリケーションはその所有者またはスーパーユーザによってのみ削除することができます。
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. パブリケーションに依存するものはないので、これらのキーワードは何も効果がありません。
Drop a publication: パブリケーションを削除します。
DROP PUBLICATION mypublication;
<command>DROP PUBLICATION</command> is a <productname>PostgreSQL</productname>
extension.
DROP PUBLICATION
はPostgreSQLの拡張です。