From 63c9aa98b4a2caf969b4af46c1f9d630924d69ee Mon Sep 17 00:00:00 2001 From: dat-a-man <98139823+dat-a-man@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:49:45 +0530 Subject: [PATCH] Added note for missing credentials error for windows authentication (#2095) * Updated SQL server documentation * Updated as per comments --- docs/website/docs/dlt-ecosystem/destinations/mssql.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/website/docs/dlt-ecosystem/destinations/mssql.md b/docs/website/docs/dlt-ecosystem/destinations/mssql.md index 9e830407dc..0ab03a3491 100644 --- a/docs/website/docs/dlt-ecosystem/destinations/mssql.md +++ b/docs/website/docs/dlt-ecosystem/destinations/mssql.md @@ -76,6 +76,10 @@ You can place any ODBC-specific settings into the query string or **destination. destination.mssql.credentials="mssql://loader.database.windows.net/dlt_data?trusted_connection=yes" ``` +:::note +If you encounter missing credentials errors when using Windows authentication, set the 'username' and 'password' as empty strings in the TOML file. +::: + **To connect to a local SQL server instance running without SSL**, pass the `encrypt=no` parameter: ```toml destination.mssql.credentials="mssql://loader:loader@localhost/dlt_data?encrypt=no"