Fasih Ullah
09/24/2024, 7:19 AMuser
09/24/2024, 7:20 AMsql ALTER DATABASE {database name} SET ALLOW_SNAPSHOT_ISOLATION ON;
(Source: [Airbyte Documentation](https://docs.airbyte.com/integrations/sources/mssql#2-enable-snapshot-isolation)) For more specific information on setting the transaction isolation level for an MSSQL source not using CDC, I would recommend checking the Airbyte documentation or reaching out to the Airbyte community for further assistance.Fasih Ullah
09/24/2024, 7:22 AMuser
09/24/2024, 7:22 AMuser
09/24/2024, 7:22 AMkey1=value1&key2=value2&key3=value3
. These parameters will be added at the end of the JDBC URL that Airbyte uses to connect to your database ([source](https://docs.airbyte.com/integrations/sources/postgres/postgres-troubleshooting#advanced-custom-jdbc-connection-strings)). Please note that certain keys (currentSchema
, user
, password
, ssl
, and sslmode
) should not be used in the JDBC URL Params field as they will be overwritten by Airbyte. For MSSQL specifically, you might want to check the official JDBC driver documentation or consult with the Airbyte community to confirm whether the transaction isolation level can be set via JDBC parameters.