AdfDataflowSourceIsolationLevel Enumeration
AdfDataflowSourceIsolationLevel Enumeration
Sets the read isolation level isn SQL sources.
Enumeration Values
| Name | Summary |
|---|---|
| ReadUncommitted | Default Action. May read not yet committed changes made by other transaction, thereby allowing dirty reads |
| ReadCommitted | Guaranteed that all read data is committed. |
| RepeatableRead | Most restrictive. Hold read locks on referenced rows and write locks on all rows that it inserts, updates or deletes. |
| Serializable | Highest isolation level. |
| None | No isolation level. |