Skip to main content

DROP SINK

Use the DROP SINK command to remove a sink if you no longer need to deliver data to the sink.

Syntax

DROP SINK [ IF EXISTS ] [schema_name.]sink_name;

Parameters

ParameterDescription
schema_nameThe schema of the sink that you want to remove. You can use SHOW SCHEMAS to get a list of all available schemas. If you don't specify a schema, the specified sink in the default schema public will be removed.
sink_nameThe name of the sink to remove.

Examples

This statement removes the sink rw_sink in the default schema public from the database:

DROP SINK rw_sink;

This statement removes the sink rw_sink in the schema rw_schema from the database:

DROP SINK IF EXISTS rw_schema.rw_sink;

See also

CREATE SINK — Create a sink.

Help us make this doc better!

Was this page helpful?

Happy React is loading...