How to Migrate from Microsoft SQL Server to Amazon Redshift
Skippr is the easiest way to migrate from MSSQL to Redshift and get fully cleansed and modeled data in one run command.
Source: MSSQL. Destination: Redshift.
Sample config
yaml
skippr:
workspace: mssql_to_redshift
pipelines:
mssql_to_redshift:
data_source: data_sources.source
data_sink: data_sinks.warehouse
data_sources:
source:
Mssql:
connection_string: "${MSSQL_CONNECTION_STRING}"
data_sinks:
warehouse:
Redshift:
database: analytics
cluster_identifier: my-cluster
db_user: admin
schema: public
region: us-east-1Environment
bash
export AWS_ACCESS_KEY_ID="your-key"
export AWS_SECRET_ACCESS_KEY="your-secret"
export REDSHIFT_CLUSTER_IDENTIFIER="my-cluster"
export REDSHIFT_DB_USER="admin"
export REDSHIFT_DATABASE="analytics"
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: redshift-warehouse.
See Quick start.
