> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> System table containing information about distributed ddl queries (queries using the ON CLUSTER clause) that were executed on a cluster.

# system.distributed_ddl_queue

<h2 id="description">
  Description
</h2>

Contains information about [distributed ddl queries (ON CLUSTER clause)](/reference/statements/distributed-ddl) that were executed on a cluster.

<h2 id="columns">
  Columns
</h2>

* `entry` ([String](/reference/data-types)) — Query id.
* `entry_version` ([Nullable(UInt8)](/reference/data-types)) — Version of the entry.
* `initiator_host` ([Nullable(String)](/reference/data-types)) — Host that initiated the DDL operation.
* `initiator_port` ([Nullable(UInt16)](/reference/data-types)) — Port used by the initiator.
* `cluster` ([String](/reference/data-types)) — Cluster name, empty if not determined.
* `query` ([String](/reference/data-types)) — Query executed.
* `settings` ([Map(String, String)](/reference/data-types)) — Settings used in the DDL operation.
* `query_create_time` ([DateTime](/reference/data-types)) — Query created time.
* `host` ([Nullable(String)](/reference/data-types)) — Hostname.
* `port` ([Nullable(UInt16)](/reference/data-types)) — Host Port.
* `status` ([Nullable(Enum8('Inactive' = 0, 'Active' = 1, 'Finished' = 2, 'Removing' = 3, 'Unknown' = 4))](/reference/data-types)) — Status of the query.
* `exception_code` ([Nullable(UInt16)](/reference/data-types)) — Exception code.
* `exception_text` ([Nullable(String)](/reference/data-types)) — Exception message.
* `query_finish_time` ([Nullable(DateTime)](/reference/data-types)) — Query finish time.
* `query_duration_ms` ([Nullable(UInt64)](/reference/data-types)) — Duration of query execution (in milliseconds).

<h2 id="example">
  Example
</h2>

```sql theme={null}
SELECT *
FROM system.distributed_ddl_queue
WHERE cluster = 'test_cluster'
LIMIT 2
FORMAT Vertical

Query id: f544e72a-6641-43f1-836b-24baa1c9632a

Row 1:
──────
entry:             query-0000000000
entry_version:     5
initiator_host:    clickhouse01
initiator_port:    9000
cluster:           test_cluster
query:             CREATE DATABASE test_db UUID '4a82697e-c85e-4e5b-a01e-a36f2a758456' ON CLUSTER test_cluster
settings:          {'max_threads':'16','use_uncompressed_cache':'0'}
query_create_time: 2023-09-01 16:15:14
host:              clickhouse-01
port:              9000
status:            Finished
exception_code:    0
exception_text:    
query_finish_time: 2023-09-01 16:15:14
query_duration_ms: 154

Row 2:
──────
entry:             query-0000000001
entry_version:     5
initiator_host:    clickhouse01
initiator_port:    9000
cluster:           test_cluster
query:             CREATE DATABASE test_db UUID '4a82697e-c85e-4e5b-a01e-a36f2a758456' ON CLUSTER test_cluster
settings:          {'max_threads':'16','use_uncompressed_cache':'0'}
query_create_time: 2023-09-01 16:15:14
host:              clickhouse-01
port:              9000
status:            Finished
exception_code:    630
exception_text:    Code: 630. DB::Exception: Cannot drop or rename test_db, because some tables depend on it:
query_finish_time: 2023-09-01 16:15:14
query_duration_ms: 154

2 rows in set. Elapsed: 0.025 sec.
```
