DROP CONNECTION
Use the DROP CONNECTION
command to remove a connection.
Before you can drop a connection, you must remove all its dependent sources and sinks.
Syntax
DROP CONNECTION [ IF EXISTS ] connection_name;
Parameters
Parameter or clause | Description |
---|---|
connection_name | The name of the connection to be removed. |
Examples
This statement removes the connection c1
.
DROP CONNECTION c1;
See also
CREATE CONNECTION
- Create a connection.