Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. SELECT CASE transaction_isolation_level
  2. WHEN 0 THEN 'Unspecified'
  3. WHEN 1 THEN 'ReadUncommitted'
  4. WHEN 2 THEN 'ReadCommitted'
  5. WHEN 3 THEN 'Repeatable'
  6. WHEN 4 THEN 'Serializable'
  7. WHEN 5 THEN 'Snapshot' END AS TRANSACTION_ISOLATION_LEVEL
  8. FROM sys.dm_exec_sessions
  9. where session_id = @@SPID
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement