
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
snowflake-data-validation
Advanced tools
Snowflake Data Validation is a command-line tool and Python library for validating data migrations and ensuring data quality between source and target databases, with a focus on Snowflake and SQL Server.
pip install snowflake-data-validation
For SQL Server support:
pip install "snowflake-data-validation[sqlserver]"
For development and testing:
pip install "snowflake-data-validation[all]"
Run a validation from SQL Server to Snowflake:
snowflake-data-validation sqlserver run-validation --data-validation-config-file ./config/conf.yaml
Or using the short alias:
sdv sqlserver run-validation --data-validation-config-file ./config/conf.yaml
Create a YAML file to define your validation workflow:
source_platform: SqlServer
target_platform: Snowflake
output_directory_path: /path/to/output
parallelization: false
source_connection:
mode: credentials
host: "server"
port: 1433
username: "user"
password: "password"
database: "db"
target_connection:
mode: name
name: "SnowflakeConnection"
validation_configuration:
schema_validation: true
metrics_validation: true
row_validation: false
comparison_configuration:
tolerance: 0.01
tables:
- fully_qualified_name: database.schema.table1
use_column_selection_as_exclude_list: false
column_selection_list:
- column1
- column2
See the documentation for more advanced configuration examples.
main_cli.py
, sqlserver_cli.py
, snowflake_cli.py
connector/
extractor/
validation/
configuration/
comparison_orchestrator.py
Project structure:
snowflake-data-validation/
├── src/snowflake/snowflake_data_validation/
│ ├── main_cli.py
│ ├── sqlserver/
│ ├── snowflake/
│ ├── connector/
│ ├── extractor/
│ ├── validation/
│ ├── configuration/
│ ├── utils/
│ └── comparison_orchestrator.py
├── docs/
├── tests/
└── config_files/
We welcome contributions! See our Contributing Guide for details on how to collaborate, set up your development environment, and submit PRs.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.
Developed with ❄️ by Snowflake
FAQs
Snowflake Data Validation
We found that snowflake-data-validation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.