4 DROP SERVER — remove a foreign server descriptor
8 DROP SERVER [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
12 DROP SERVER removes an existing foreign server descriptor. To execute
13 this command, the current user must be the owner of the server.
18 Do not throw an error if the server does not exist. A notice is
22 The name of an existing server.
25 Automatically drop objects that depend on the server (such as
26 user mappings), and in turn all objects that depend on those
27 objects (see Section 5.15).
30 Refuse to drop the server if any objects depend on it. This is
35 Drop a server foo if it exists:
36 DROP SERVER IF EXISTS foo;
40 DROP SERVER conforms to ISO/IEC 9075-9 (SQL/MED). The IF EXISTS clause
41 is a PostgreSQL extension.
45 CREATE SERVER, ALTER SERVER