# DROP ICEBERG CATALOG

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [cloud-data-platform-full.txt](https://docs.redpanda.com/cloud-data-platform-full.txt)

---
title: DROP ICEBERG CATALOG
latest-operator-version: v26.1.4
latest-console-tag: v3.7.3
latest-connect-version: 4.93.0
latest-redpanda-tag: v26.1.9
docname: sql/sql-statements/drop-iceberg-catalog
page-component-name: cloud-data-platform
page-version: master
page-component-version: master
page-component-title: Cloud
page-relative-src-path: sql/sql-statements/drop-iceberg-catalog.adoc
page-edit-url: https://github.com/redpanda-data/cloud-docs/edit/main/modules/reference/pages/sql/sql-statements/drop-iceberg-catalog.adoc
description: The DROP ICEBERG CATALOG statement removes an Iceberg catalog connection.
page-topic-type: reference
page-git-created-date: "2026-05-26"
page-git-modified-date: "2026-05-26"
---

<!-- Source: https://docs.redpanda.com/cloud-data-platform/reference/sql/sql-statements/drop-iceberg-catalog.md -->

The `DROP ICEBERG CATALOG` statement removes an Iceberg catalog connection.

You can’t drop an Iceberg catalog while a Redpanda catalog is linked to it through `USING CATALOG`. To drop the Iceberg catalog, first detach or drop the linked Redpanda catalog.

## [](#syntax)Syntax

```sql
DROP ICEBERG CATALOG [IF EXISTS] catalog_name;
```

-   `catalog_name`: Name of the Iceberg catalog to remove.

-   `IF EXISTS`: Optional. Prevents an error if the Iceberg catalog does not exist.


## [](#examples)Examples

Drop an Iceberg catalog:

```sql
DROP ICEBERG CATALOG lakehouse_catalog;
```

Drop the catalog only if it exists:

```sql
DROP ICEBERG CATALOG IF EXISTS lakehouse_catalog;
```