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
Copy file name to clipboardExpand all lines: mssql-plugin/docs/SQL Server-connector.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,14 @@ authentication. Optional for databases that do not require authentication.
22
22
23
23
**Password:** Password to use to connect to the specified database.
24
24
25
+
**Transaction Isolation Level** The transaction isolation level of the database connection
26
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
27
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
28
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
29
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
30
+
31
+
For more details on the Transaction Isolation Levels supported in SQL Server, refer to the [SQL Server documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver16)
32
+
25
33
**Authentication Type:** Indicates which authentication method will be used for the connection. Use 'SQL Login'. to
26
34
connect to a SQL Server using username and password properties. Use 'Active Directory Password' to connect to an Azure
27
35
SQL Database/Data Warehouse using an Azure AD principal name and password.
Copy file name to clipboardExpand all lines: mssql-plugin/docs/SqlServer-batchsink.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,14 @@ an Azure SQL Database/Data Warehouse using an Azure AD principal name and passwo
46
46
47
47
**Password:** Password to use to connect to the specified database.
48
48
49
+
**Transaction Isolation Level** The transaction isolation level of the database connection
50
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
51
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
52
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
53
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
54
+
55
+
For more details on the Transaction Isolation Levels supported in SQL Server, refer to the [SQL Server documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver16)
56
+
49
57
**Instance Name:** SQL Server instance name to connect to. When it is not specified, a
50
58
connection is made to the default instance. For the case where both the instanceName and port are specified,
51
59
see the notes for port. If you specify a Virtual Network Name in the Server connection property, you cannot
Copy file name to clipboardExpand all lines: mssql-plugin/docs/SqlServer-batchsource.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,14 @@ an Azure SQL Database/Data Warehouse using an Azure AD principal name and passwo
56
56
57
57
**Password:** Password to use to connect to the specified database.
58
58
59
+
**Transaction Isolation Level** The transaction isolation level of the database connection
60
+
- TRANSACTION_READ_COMMITTED: No dirty reads. Non-repeatable reads and phantom reads are possible.
61
+
- TRANSACTION_SERIALIZABLE: No dirty reads. Non-repeatable and phantom reads are prevented.
62
+
- TRANSACTION_REPEATABLE_READ: No dirty reads. Prevents non-repeatable reads, but phantom reads are still possible.
63
+
- TRANSACTION_READ_UNCOMMITTED: Allows dirty reads (reading uncommitted changes from other transactions). Non-repeatable reads and phantom reads are possible.
64
+
65
+
For more details on the Transaction Isolation Levels supported in SQL Server, refer to the [SQL Server documentation](https://learn.microsoft.com/en-us/sql/t-sql/statements/set-transaction-isolation-level-transact-sql?view=sql-server-ver16)
66
+
59
67
**Instance Name:** SQL Server instance name to connect to. When it is not specified, a
60
68
connection is made to the default instance. For the case where both the instanceName and port are specified,
61
69
see the notes for port. If you specify a Virtual Network Name in the Server connection property, you cannot
0 commit comments