Sunday, August 9, 2020

Read Committed Isolation level in SQL Server with example

Read Committed

With Read Committed, transactions issue exclusive locks at the time of data modification, thus not allowing other transactions to read the modified data that is not yet committed. The Read Committed isolation level prevents the Dirty Read issue.

Execute below scripts to create table and insert some records to use in examples for each isolation.

 IF OBJECT_ID('Product') is not null

    begin

    DROP TABLE Product

    end

create table Product

(ProdID int,

ProdName Varchar(50),

ProdPrice int

)

insert into Product(ProdID,ProdName,ProdPrice)

values

( 1,'Black Shirt',1000),

( 2,'White Suits',2000),

( 3,'Red Kurta',700),

( 4,'Half Shirt',1700)

Run both the sessions side by side

Example 1:

Session 1:

begin tran

update Product set ProdPrice=999 where ProdID=1

waitfor delay '00:00:15'

commit

Session 2:

set transaction isolation level read committed

select ProdPrice from Product where ProdID=1

Output:

999

Session 2 output can be seen only after session 1 is completed execution

Example 2: (Carry forward from example 1)

Session 1:

begin tran

select ProdPrice from Product where ProdID=1

waitfor delay '00:00:15'

commit

Session 2:

set transaction isolation level read committed

select ProdPrice from Product where ProdID=1

Output:

999

Output will come immediately as in session 1 there is no DML operation.

Example 3:

Session 1:

begin tran

select ProdPrice from Product where ProdID=1

waitfor delay '00:00:15'

update Product set ProdPrice=1000 where ProdID=1

commit

Session 2:

set transaction isolation level read committed

select ProdPrice from Product where ProdID=1

Output:

999

Output will come immediately as in session 1 there is no DML operation before wait. Later value will change to 1000.


Click on Below links to see the Different types of isolation levels with example

Read Uncommitted isolation level in SQL Server with example

Read Uncommitted

Transactions running at this level do not issue shared locks to prevent other transactions from modifying data read by the current transaction. Also, transactions are not blocked by exclusive locks at the time of data modification, thus allowing other transactions to read the modified data which is not yet committed.

Execute below scripts to create table and insert some records to use in examples for each isolation.

 IF OBJECT_ID('Product') is not null

 begin

 DROP TABLE Product

 end

create table Product

(ProdID int,

ProdName Varchar(50),

ProdPrice int

)

 insert into Product(ProdID,ProdName,ProdPrice)

values

( 1,'Black Shirt',1000),

( 2,'White Suits',2000),

( 3,'Red Kurta',700),

( 4,'Half Shirt',1700)

Open two sessions

Run both the sessions side by side

Session 1:

begin tran

update Product set ProdPrice=999 where ProdID=1

waitfor delay '00:00:15'

rollback

Session 2:

set transaction isolation level read uncommitted

select ProdPrice from Product where ProdID=1

Output:

999

Session 2 is executed after Session 1 DML operation before transaction rollback.

So 999 is populated instead of 1000.


Click on Below links to see the Different types of isolation levels with example