> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DROP DATA SINK

<a id="sql-drop-data-sink" />

Removes an existing [data sink](/content/sql/ddl/create-data-sink#sql-create-data-sink).

```sql title="DROP DATA SINK Syntax" theme={null}
DROP [EXTERNAL] DATA SINK [<schema name>.]<data sink name>
```

<Info>
  Any [streams](/content/sql/ddl/create-stream#sql-create-stream) that depend on a given
  *data sink* must be dropped before it can be dropped.
</Info>

## Parameters

<AccordionGroup>
  <Accordion title="EXTERNAL" id="external" defaultOpen>
    Optional keyword for clarity
  </Accordion>

  <Accordion title="<schema name>" id="<schema-name>" defaultOpen>
    Name of the *schema* containing the *data sink* to remove
  </Accordion>

  <Accordion title="<data sink name>" id="<data-sink-name>" defaultOpen>
    Name of the *data sink* to remove
  </Accordion>
</AccordionGroup>

## Examples

To drop a *data sink*, `kin_dsink`:

```sql DROP DATA SINK Example theme={null}
DROP DATA SINK kin_dsink
```
