Cloud

DROP STORAGE

The DROP STORAGE statement removes a named storage definition.

In Redpanda Cloud, the storage connection and Iceberg catalog used to query Iceberg-enabled topics are configured and managed automatically when you enable Redpanda SQL on a cluster that has an Iceberg REST catalog configured. You don’t run these statements yourself for that workflow. This page documents the statement’s syntax and options so you can understand what Redpanda Cloud configures. See Query Iceberg-enabled topics.

Syntax

DROP STORAGE [IF EXISTS] storage_name;
  • storage_name: Name of the storage definition to remove.

  • IF EXISTS: Optional. Prevents an error if the storage definition does not exist.

Examples

DROP STORAGE archive_storage;