DROP SERVER deletes an existing data server.
Only the server owner can delete a server.
1 | DROP SERVER [ IF EXISTS ] server_name [ {CASCADE | RESTRICT} ] ; |
Sends a notice instead of an error if the specified table does not exist.
Specifies the name of a server.
Delete the hdfs_server server.
1 | DROP SERVER hdfs_server; |