You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| authentication_method | optional | Fabric authentication method. Supported values: 'auto', 'cli', 'environment', 'synapsespark' and 'fabricspark'. No default value. |
38
+
| Property | Required | Notes |
39
+
| -------- | -------- | ----- |
40
+
| type | required | Identify the type of data source for Soda. |
41
+
| host | required | Provide a host identifier. |
42
+
| port | optional | Provide a port identifier. You can remove the `port` config setting entirely. Default: `1433`. |
43
+
| username | required | Use system variables to retrieve this value securely. |
44
+
| password | required | Use system variables to retrieve this value securely. |
45
+
| database | required | Provide an identifier for your database. |
46
+
| schema | required | Provide an identifier for the schema in which your dataset exists. |
47
+
| trusted_connection | optional | Indicate connection trustworthiness by providing a boolean value: `true`or `false`. The default value is `false`. Set to `true` if you are using Active Directory authentication. |
48
+
| encrypt | optional | Indicate the encryption status by providing a boolean value: `true`or `false`. The default value is `false`. |
49
+
| trust_server_certificate | optional | Specifies whether encryption occurs if there is no verifiable server certificate. Provide a boolean value: `true`or `false`. The default value is `false`. |
50
+
| driver | optional | Use this config setting to specify the ODBC driver version you use. For example, `SQL Server Native Client 11.0` or `ODBC Driver 18 for SQL Server`. |
| authentication | optional | Authentication method to use. Supported values: `sql`, `activedirectoryinteractive`, `activedirectorypassword`, `activedirectoryserviceprincipal`, `activedirectory`, `auto`, `cli`, `environment`, `synapsespark`, and `fabricspark`. The default value is `sql`, which uses `username` and `password` to authenticate. |
Copy file name to clipboardExpand all lines: soda/connect-mssql.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ data_source my_datasource_name:
31
31
scope: DW
32
32
connection_parameters:
33
33
multi_subnet_failover: true
34
+
authentication: sql
34
35
```
35
36
36
37
| Property | Required | Notes |
@@ -48,6 +49,7 @@ data_source my_datasource_name:
48
49
| driver | optional | Use this config setting to specify the ODBC driver version you use. For example, `SQL Server Native Client 11.0` or `ODBC Driver 18 for SQL Server`. |
| authentication | optional | Authentication method to use. Supported values: `sql`, `activedirectoryinteractive`, `activedirectorypassword`, `activedirectoryserviceprincipal`, `activedirectory`. The default value is `sql` which uses `username` and `password` to authenticate. |
0 commit comments