Skip to content

Azure Synapse

Writes data to Azure Synapse Analytics via TDS protocol.

Configuration

yaml
warehouse:
  kind: synapse
  connection_string: ${SYNAPSE_CONNECTION_STRING}
  schema: dbo
FieldDefaultDescription
connection_string(required)ADO-style connection string
schemadboTarget schema

CLI

bash
skippr connect warehouse synapse \
  --connection-string "${SYNAPSE_CONNECTION_STRING}" \
  --schema dbo
FlagDescription
--connection-stringADO.NET connection string (or set SYNAPSE_HOST, SYNAPSE_USER, SYNAPSE_PASSWORD, SYNAPSE_DATABASE env vars individually)
--schemaTarget schema (default: dbo)

CDC

Azure Synapse supports CDC with MERGE semantics via the Tiberius driver. Skippr automatically creates _skippr_order_token columns and tombstone tables.

See CDC Destinations -- Synapse for details.