mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
62054856b7
* DOCSUP-1999: First commit to test and build docs. * DOCSUP-1999: Move topics from misc.md to single files. * DOCSUP-1999: Add footer original article (for some files) * DOCSUP-1999: Fix some links. * DOCSUP-1999: Add Original article footer for all added files. * DOCSUP-1999: Fix broken link. * DOCSUP-1999: Fix header in misc.md (by pr comment). Fixed footer (original article). * DOCSUP-1999: Fix broken links for build. Co-authored-by: romanzhukov <romanzhukov@yandex-team.ru>
22 lines
886 B
Markdown
22 lines
886 B
Markdown
---
|
|
toc_priority: 51
|
|
toc_title: SET
|
|
---
|
|
|
|
# SET {#query-set}
|
|
|
|
``` sql
|
|
SET param = value
|
|
```
|
|
|
|
Устанавливает значение `value` для [настройки](../../operations/settings/index.md) `param` в текущей сессии. [Конфигурационные параметры сервера](../../operations/server-configuration-parameters/settings.md) нельзя изменить подобным образом.
|
|
|
|
Можно одним запросом установить все настройки из заданного профиля настроек.
|
|
|
|
``` sql
|
|
SET profile = 'profile-name-from-the-settings-file'
|
|
```
|
|
|
|
Подробности смотрите в разделе [Настройки](../../operations/settings/settings.md).
|
|
|
|
[Оригинальная статья](https://clickhouse.tech/docs/ru/sql-reference/statements/set/) <!--hide--> |