SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED on insert record

1.2k Views Asked by At

Consider the following SQL statement:

SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
BEGIN TRANSACTION

insert into Customer(name)
values('CustomerName')

COMMIT

Am I right in saying this Isolation Level is not needed since we are doing a simple insert? Not actually READing anything

0

There are 0 best solutions below