ClickHouse/docs/en/operations/system-tables/settings_profiles.md
Anna 0a9f6b1805
DOCSUP-2193: Describe SHOW queries for RBAC (#14515)
* Documentation for #10387, upd syntax by issues #12311, #12312

* Update docs/ru/sql-reference/statements/show.md

Co-authored-by: Anna Devyatova <annadevyatova@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>
2020-09-08 10:35:24 +03:00

1.4 KiB

system.settings_profiles

Contains properties of configured setting profiles.

Columns:

  • name (String) — Setting profile name.

  • id (UUID) — Setting profile ID.

  • storage (String) — Path to the storage of setting profiles. Configured in the access_control_path parameter.

  • num_elements (UInt64) — Number of elements for this profile in the system.settings_profile_elements table.

  • apply_to_all (UInt8) — Shows that the settings profile set for all roles and/or users.

  • apply_to_list (Array(String)) — List of the roles and/or users to which the setting profile is applied.

  • apply_to_except (Array(String)) — The setting profile is applied to all roles and/or users excepting of the listed ones.

See Also

Original article