I'm using an MS SQL database that is written/read constantly, as well as the databases that it is linked to through Linked Server connection. This is why I'm using SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
in every query that I'm running. My question is, will this transaction level be used for the queries that are run on the Linked Server? Say my server is called General
and it is linked to the server Linked
. If I run the following query:
select *
from General.TableName
join Linked.[Database].dbo.AnotherTableName on 1 = 1
will the Linked.Database.dbo.AnotherTableName
be (IS) locked?