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

> 로컬 서버에 상주하는 워크로드에 대한 정보를 담고 있는 시스템 테이블입니다.

# system.workloads

<div id="description">
  ## 설명
</div>

로컬 서버에 있는 [워크로드](/ko/concepts/features/configuration/server-config/workload-scheduling#workload_entity_storage)에 대한 정보를 담고 있습니다. 이 테이블에는 각 워크로드별로 하나의 행이 있습니다.

<div id="columns">
  ## 컬럼
</div>

* `name` ([String](/ko/reference/data-types)) — 워크로드 이름입니다.
* `parent` ([String](/ko/reference/data-types)) — 상위 워크로드 이름입니다.
* `create_query` ([String](/ko/reference/data-types)) — 워크로드를 생성하는 CREATE 쿼리입니다.

<div id="example">
  ## 예시
</div>

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

```text theme={null}
Row 1:
──────
name:         production
parent:       all
create_query: CREATE WORKLOAD production IN `all` SETTINGS weight = 9

Row 2:
──────
name:         development
parent:       all
create_query: CREATE WORKLOAD development IN `all`

Row 3:
──────
name:         all
parent:
create_query: CREATE WORKLOAD `all`
```
