Quick onboard
Deployment
Data Modeling
Connecting
Migration
Query
Operations and Maintenance
Common Maintenance
Partition
Backup and Restore
Expansion
Mirroring
Resource Management
Security
Monitoring
Performance Tuning
Troubleshooting
Reference Guide
Tool guide
Data type
Storage Engine
Executor
Stream
DR (Disaster Recovery)
Configuration
Index
Extension
SQL Reference
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.