Skip to content

MotherDuck (Source)

Reads from a MotherDuck database.

Configuration

yaml
source:
  kind: motherduck_source
  motherduck_token: ${MOTHERDUCK_TOKEN}
  database: my_database
  tables:
    - raw.events
FieldDefaultDescription
motherduck_token(required)MotherDuck token (or set MOTHERDUCK_TOKEN)
databaseDatabase name
tables(optional)Tables to extract
queryCustom SQL query (overrides tables)

CLI

bash
skippr connect source motherduck-source \
  --motherduck-token "$MOTHERDUCK_TOKEN" \
  --database my_db \
  --tables main.customers,main.orders
FlagDescription
--motherduck-token(required) MotherDuck token (or set MOTHERDUCK_TOKEN)
--databaseDatabase name
--tablesComma-separated list of tables
--querySQL query instead of table list