Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new config settings conn_properties and enable_tds_logging to tap-mssql (Rob Winters variant) #1836

Merged
Merged
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
15 changes: 15 additions & 0 deletions _data/meltano/extractors/tap-mssql/wintersrd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,24 @@ settings:
label: Cursor Array Size
name: cursor_array_size
value: 1
- description: |
The "conn_properties" allows specific configuration of database settings via SQL set statements to send to the database
instance upon connection establishment. Can be a string or another kind of iterable of strings.
If you want to connect Azure SQL Server instances e.g. PDW you will need to adjust the connection setting for that version of MSSQL.
Please refer to the github repo page for details on these settings.
label: Connection Properties
name: conn_properties
- description: Your MSSQL database name.
label: Database
name: database
- description: |
When set it will dump out the underlying TDS driver logs. Useful for diagnosing issues if
you are having connection issues to SQL Server databases. WARNING! this does dump a lot of information and may
log secure data, should be only used in Development environments.
kind: boolean
label: Enable TDS Logging
name: enable_tds_logging
value: false
- description: A comma separated list of databases to filter for.
label: Filter Databases
name: filter_dbs
Expand Down