ClickHouse/docs/ja/operations/settings/permissions-for-queries.md
Ivan Blinkov cd14f9ebcb
SQL reference refactoring (#10857)
* split up select.md

* array-join.md basic refactoring

* distinct.md basic refactoring

* format.md basic refactoring

* from.md basic refactoring

* group-by.md basic refactoring

* having.md basic refactoring

* additional index.md refactoring

* into-outfile.md basic refactoring

* join.md basic refactoring

* limit.md basic refactoring

* limit-by.md basic refactoring

* order-by.md basic refactoring

* prewhere.md basic refactoring

* adjust operators/index.md links

* adjust sample.md links

* adjust more links

* adjust operatots links

* fix some links

* adjust aggregate function article titles

* basic refactor of remaining select clauses

* absolute paths in make_links.sh

* run make_links.sh

* remove old select.md locations

* translate docs/es

* translate docs/fr

* translate docs/fa

* remove old operators.md location

* change operators.md links

* adjust links in docs/es

* adjust links in docs/es

* minor texts adjustments

* wip

* update machine translations to use new links

* fix changelog

* es build fixes

* get rid of some select.md links

* temporary adjust ru links

* temporary adjust more ru links

* improve curly brace handling

* adjust ru as well

* fa build fix

* ru link fixes

* zh link fixes

* temporary disable part of anchor checks
2020-05-15 07:34:54 +03:00

2.4 KiB

machine_translated machine_translated_rev toc_priority toc_title
true 72537a2d52 58 クエリの権限

クエリの権限

問合せClickHouse大きく分けて複数の種類:

  1. データを読み込むためのクエリー: SELECT, SHOW, DESCRIBE, EXISTS.
  2. データクエリの記述: INSERT, OPTIMIZE.
  3. 設定の変更クエリ: SET, USE.
  4. DDL クエリ: CREATE, ALTER, RENAME, ATTACH, DETACH, DROP TRUNCATE.
  5. KILL QUERY.

次の設定では、クエリの種類によってユーザー権限を調整します:

  • 読み取り専用 — Restricts permissions for all types of queries except DDL queries.
  • allow_ddl — Restricts permissions for DDL queries.

KILL QUERY 任意の設定で実行できます。

読み取り専用

制限のアクセス権読書データの書き込みデータや設定の変更ます。

クエリを型に分割する方法を参照してください 上記.

可能な値:

  • 0 — All queries are allowed.
  • 1 — Only read data queries are allowed.
  • 2 — Read data and change settings queries are allowed.

設定後 readonly = 1 ユーザーは変更できません readonlyallow_ddl 現在のセッションの設定。

を使用する場合 GET の方法 HTTPインターフェ, readonly = 1 自動的に設定されます。 データを変更するには、 POST 方法。

設定 readonly = 1 ユーザーがすべての設定を変更するのを禁止します。 ユーザーを禁止する方法があります からの変更は、特定の設定の詳細を見る 設定の制約.

デフォルト値:0

allow_ddl

許可または拒否 DDL クエリ。

クエリを型に分割する方法を参照してください 上記.

可能な値:

  • 0 — DDL queries are not allowed.
  • 1 — DDL queries are allowed.

実行できない SET allow_ddl = 1 もし allow_ddl = 0 現在のセッションの場合。

デフォルト値:1

元の記事