—
NAME
DROP_SERVER - remove a foreign server descriptor
SYNOPSIS
bash
DROP SERVER [ IF EXISTS ] \nname\n [, ...] [ 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 EXISTS
name
CASCADE
RESTRICT
EXAMPLES
Drop a server foo if it exists:
bash
DROP SERVER IF EXISTS foo;COMPATIBILITY
DROP SERVER conforms to ISO/IEC 9075-9 (SQL/MED). The IF EXISTS clause is a PostgreSQL extension.
SEE ALSO
CREATE SERVER (CREATE_SERVER(7)), ALTER SERVER (ALTER_SERVER(7))