DROP TOOL Statement in Confluent Cloud for Apache Flink

Remove a tool resource from the environment.

Syntax

DROP TOOL [IF EXISTS] [[catalog.]database.]tool_name

Description

Remove a tool resource from the current environment. The tool resource is permanently deleted and can’t be recovered.

Parameters

  • IF EXISTS (Optional): Do not throw an error if the tool does not exist
  • catalog.database (STRING, Optional): Optional catalog and database name
  • tool_name (STRING): Name of the tool to drop

Examples

Drop a tool:

DROP TOOL convert_to_celsius_tool;

Drop a tool with IF EXISTS:

DROP TOOL IF EXISTS old_tool;

Drop a tool from a specific database:

DROP TOOL my_database.weather_tool;