Skip to content

Commit

Permalink
adds information on table backends
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed May 17, 2024
1 parent 6d37b61 commit 0e949b9
Show file tree
Hide file tree
Showing 2 changed files with 211 additions and 146 deletions.
5 changes: 2 additions & 3 deletions docs/website/docs/dlt-ecosystem/destinations/mssql.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,11 @@ destination.mssql.credentials="mssql://loader:<password>@loader.database.windows

You can place any ODBC-specific settings into the query string or **destination.mssql.credentials.query** TOML table as in the example above.

**To connect to an `mssql` server using Windows authentication**, include `trusted_connection=yes` in the connection string. This method is useful when SQL logins aren't available, and you use Windows credentials.
**To connect to an `mssql` server using Windows authentication**, include `trusted_connection=yes` in the connection string.

```toml
destination.mssql.credentials="mssql://username:password@loader.database.windows.net/dlt_data?trusted_connection=yes"
destination.mssql.credentials="mssql://loader.database.windows.net/dlt_data?trusted_connection=yes"
```
> The username and password must be filled out with the appropriate login credentials or left untouched. Leaving these empty is not recommended.

**To connect to a local sql server instance running without SSL** pass `encrypt=no` parameter:
```toml
Expand Down
Loading

0 comments on commit 0e949b9

Please sign in to comment.