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

> Tabela do sistema que contém informações sobre as cargas de trabalho no servidor local.

# system.workloads

<div id="description">
  ## Descrição
</div>

Contém informações sobre as [cargas de trabalho](/pt-BR/concepts/features/configuration/server-config/workload-scheduling#workload_entity_storage) armazenadas no servidor local. A tabela contém uma linha para cada carga de trabalho.

<div id="columns">
  ## Colunas
</div>

* `name` ([String](/pt-BR/reference/data-types)) — O nome da carga de trabalho.
* `parent` ([String](/pt-BR/reference/data-types)) — O nome da carga de trabalho pai.
* `create_query` ([String](/pt-BR/reference/data-types)) — A consulta CREATE da carga de trabalho.

<div id="example">
  ## Exemplo
</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`
```
