YMatrix
Quick Start
Cluster Deployment
Data Model
Data Writing
Data Query
SQL Reference
Maintenance and Monitoring
Tool Guide
Troubleshooting
Delete the external server descriptor.
DROP SERVER [ IF EXISTS ] servername [ CASCADE | RESTRICT ]
DROP SERVER deletes existing external server descriptors. The user executing this command must be the owner of the server.
IF EXISTS
servername
CASCADE
RESTRICT
Delete the server named foo (if it exists):
DROP SERVER IF EXISTS foo;
DROP SERVER complies with ISO/IEC 9075-9 (SQL/MED). The IF EXISTS clause is a YMatrix database extension.