How to Migrate from Microsoft SQL Server to Snowflake
Skippr is the easiest way to migrate from MSSQL to Snowflake and get fully cleansed and modeled data in one run command.
Source: MSSQL. Destination: Snowflake.
Sample config
yaml
skippr:
workspace: mssql_to_snowflake
pipelines:
mssql_to_snowflake:
data_source: data_sources.source
data_sink: data_sinks.warehouse
data_sources:
source:
Mssql:
connection_string: "${MSSQL_CONNECTION_STRING}"
data_sinks:
warehouse:
Snowflake:
database: ANALYTICS
schema: RAW
warehouse: COMPUTE_WH
role: ACCOUNTADMINEnvironment
bash
export SNOWFLAKE_ACCOUNT="MYORG-MYACCOUNT"
export SNOWFLAKE_USER="myuser"
export SNOWFLAKE_PRIVATE_KEY_PATH="/path/to/snowflake_key.p8"
export MSSQL_CONNECTION_STRING="server=tcp:127.0.0.1,1433;database=testdb;user id=sa;password=YourPass;TrustServerCertificate=true"Source connector: mssql. Destination connector: snowflake.
See Quick start.
