SIGN UP MEMBER LOGIN:    
Blog

Transaction Isolation - Part 7 [Serializable Isolation]

Posted by Sivaraman Dhamodaran Blogs | SQL Server 2012 Feb 02, 2012
In this Blog we will Look what is Serializable Isolation and Table Locks

This Isolation also performs a lock and but the lock is a table level lock and the table prohibits any insert and update on it. That means the entire table is completely locked for any changes. No Inserts. No Updates. You can examine this by taking the Set of queries shows in the previous example. Make sure to change the Isolation level to serializable as shown below:

 

SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;

 

Note that the Isolation allows Select statements on the table.



share this blog :
post comment