In this query :
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
Select * from table1
Go
Select * from table2
Go
Does it mean that the READ UNCOMMITTED
would gonna work only on the Select * from table1
becuase of the Go
?
And why this don't work?
declare @var varchar(20)
set @var = 'fdsdsf'
select 'var'
go
select @var
the go
must eliminate in order for this to work