DROP SERVER
DROP SERVER — remove a foreign server descriptor
Synopsis
DROP SERVER [ IF EXISTS ]name [, ...] [ CASCADE | RESTRICT ]Description
DROP SERVER removes an existing foreign server descriptor. To execute this command, the current user must be the owner of the server.
Parameters
IF EXISTSDo not throw an error if the server does not exist. A notice is issued in this case.
nameThe name of an existing server.
CASCADEAutomatically drop objects that depend on the server (such as user mappings), and in turn all objects that depend on those objects (seeSection 5.13).
RESTRICTRefuse to drop the server if any objects depend on it. This is the default.
Examples
Drop a serverfoo if it exists:
DROP SERVER IF EXISTS foo;
Compatibility
DROP SERVER conforms to ISO/IEC 9075-9 (SQL/MED). TheIF EXISTS clause is aPostgreSQL extension.