> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sqlbuild.com/llms.txt
> Use this file to discover all available pages before exploring further.

# seed

> Load seed CSV files into the warehouse.

# sqb seed

Loads seed CSV files into the warehouse as tables. Seeds are fully replaced on every run.

## Usage

```bash theme={null}
sqb --project-dir <path> seed [flags]
```

## Flags

| Flag             | Description                   |
| ---------------- | ----------------------------- |
| `--select`, `-s` | Select specific seeds by name |
| `--exclude`      | Exclude specific seeds        |

## Examples

```bash theme={null}
# Load all seeds
sqb seed

# Load a specific seed
sqb seed --select seed:waffle_types
```
