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

> 各デタッチされたテーブルの情報を含むシステムテーブル。

# system.detached_tables

<div id="description">
  ## 説明
</div>

各デタッチされたテーブルに関する情報を含みます。

<div id="columns">
  ## カラム
</div>

* `database` ([String](/ja/reference/data-types)) — テーブルが属するデータベースの名前。
* `table` ([String](/ja/reference/data-types)) — テーブル名。
* `uuid` ([UUID](/ja/reference/data-types)) — テーブルの UUID (Atomic データベース) 。
* `metadata_path` ([String](/ja/reference/data-types)) — ファイルシステム内のテーブルメタデータへのパス。
* `is_permanently` ([UInt8](/ja/reference/data-types)) — テーブルが恒久的にデタッチされているかどうか。

<div id="example">
  ## 例
</div>

```sql theme={null}
SELECT * FROM system.detached_tables FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:                   base
table:                      t1
uuid:                       81b1c20a-b7c6-4116-a2ce-7583fb6b6736
metadata_path:              /var/lib/clickhouse/store/461/461cf698-fd0b-406d-8c01-5d8fd5748a91/t1.sql
is_permanently:             1
```
