Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Microsoft SQL Server Support Docs #845

Merged
merged 6 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pip install data-diff 'data-diff[postgresql,snowflake]' -U

Additionally, you can install all open source supported database adapters as follows.
```
pip install data-diff 'data-diff[all-oss-supported-dbs]' -U
pip install data-diff 'data-diff[all-dbs]' -U
```

2. Run `data-diff` with connection URIs
Expand Down Expand Up @@ -156,6 +156,7 @@ Check out [documentation](https://docs.datafold.com/reference/open_source/cli) f
| Redshift | 🟢 | `redshift://<username>:<password>@<hostname>:5439/<database>` |
| DuckDB | 🟢 | `duckdb://<filepath>` |
| MotherDuck | 🟢 | `duckdb://<filepath>` |
| Microsoft SQL Server | 🟢 | `mssql://<user>:<password>@<host>/<database>/<schema>` |
| Oracle | 🟡 | `oracle://<username>:<password>@<hostname>/servive_or_sid` |
| Presto | 🟡 | `presto://<username>:<password>@<hostname>:8080/<database>` |
| Databricks | 🟡 | `databricks://<http_path>:<access_token>@<server_hostname>/<catalog>/<schema>` |
Expand Down
33 changes: 4 additions & 29 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ redshift = ["psycopg2"]
snowflake = ["snowflake-connector-python", "cryptography"]
presto = ["presto-python-client"]
oracle = ["oracledb"]
mssql = ["pyodbc"] # natively supported in Datafold Cloud only
mssql = ["pyodbc"]
# databricks = ["databricks-sql-connector"]
trino = ["trino"]
clickhouse = ["clickhouse-driver"]
vertica = ["vertica-python"]
duckdb = ["duckdb"]
all-oss-supported-dbs = [
all-dbs = [
"preql", "mysql-connector-python", "psycopg2", "snowflake-connector-python", "cryptography", "presto-python-client",
"oracledb", "trino", "clickhouse-driver", "vertica-python", "duckdb"
"oracledb", "pyodbc", "trino", "clickhouse-driver", "vertica-python", "duckdb"
]

[tool.poetry.group.dev.dependencies]
Expand Down