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

> サーバーがサポートする Dictionary ソースの一覧と、それぞれの埋め込みドキュメントを含むシステムテーブル。

# system.dictionary_sources

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

サーバーでサポートされている Dictionary ソースの一覧と、各ソースに組み込まれたドキュメントが含まれます。Dictionary ソースは Dictionary データの読み込み元を決定するもので、`CREATE DICTIONARY` クエリの `SOURCE` 句で指定します。

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

* `name` ([String](/ja/reference/data-types/index)) — SOURCE 句で指定される Dictionary ソースの名前。
* `description` ([String](/ja/reference/data-types/index)) — Dictionary ソースの概要説明。
* `syntax` ([String](/ja/reference/data-types/index)) — ソースを指定するための SOURCE 句の構造。なお、一部のソースは、Dictionary が DDL クエリから作成される場合 (サーバー設定ファイルから作成される場合とは異なり) 、アクセス制御の対象となります。詳細については、各ソースの `description` を参照してください。
* `examples` ([String](/ja/reference/data-types/index)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types/index)) — そのソースが最初に導入された ClickHouse のバージョン。形式は major.minor です。
* `related` ([Array(String)](/ja/reference/data-types/index)) — 関連する Dictionary ソースの名前。

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

```sql title="Query" theme={null}
SELECT name, syntax
FROM system.dictionary_sources
WHERE name IN ('clickhouse', 'file')
ORDER BY name
```

```text title="Response" theme={null}
┌─name───────┬─syntax─────────────────────────────────────────────────────────────────────────┐
│ clickhouse │ SOURCE(CLICKHOUSE(host 'host' port 9000 user 'default' password '' db 'db' table 'table')) │
│ file       │ SOURCE(FILE(path '/path/to/file' format 'CSV'))                                  │
└────────────┴────────────────────────────────────────────────────────────────────────────────┘
```

<div id="see-also">
  ## 関連項目
</div>

* [Dictionary ソース](/ja/reference/statements/create/dictionary/sources/overview) — Dictionary とそのデータソースに関する情報。
