Syntax
Parameters
Examples
This statement removes the connectionc1.
See also
CREATE CONNECTION
Create a connection
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the DROP CONNECTION command to remove a connection.
DROP CONNECTION [ IF EXISTS ] connection_name [ CASCADE ];
| Parameter or clause | Description |
|---|---|
| connection_name | The name of the connection to be removed. |
| CASCADE option | If this option is specified, all objects (such as tables and sinks) that depend on the connection, and in turn all objects that depend on those objects will be dropped. Not supported for Iceberg connections. |
c1.
DROP CONNECTION c1;
Was this page helpful?