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;