We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ccfaeb commit d505be0Copy full SHA for d505be0
1 file changed
dbt/adapters/sqlserver/connections.py
@@ -259,6 +259,9 @@ def open(cls, connection):
259
if getattr(credentials, "trust_cert", False) is True:
260
con_str.append(f"TrustServerCertificate=Yes")
261
262
+ application_name = f"dbt-{credentials.type}"
263
+ con_str.append(f"APP={application_name}")
264
+
265
con_str_concat = ';'.join(con_str)
266
267
index = []
0 commit comments