YMatrix
Quick Start
Standard Cluster Deployment
Data Modeling
Connecting to The database
Data Migration
Data Query
Maintenance and Monitoring
Performance Tuning
Troubleshooting
Reference Guide
SQL Reference
FAQ
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.