Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE AdventureWorks
GO
SET TRANSACTION ISOLATION LEVEL [COLOR=red]Your Level [/color];
GO
BEGIN TRANSACTION;
SELECT EmployeeID
FROM HumanResources.Employee;
GO
select a.Col1, b.Col2, c.Col3
from Table1 with a (nolock)
join Table2 with b (nolock) on a.Col5 = b.Col5
join OPENQUERY('select * from table with (nolock)'...) c on a.col5 = c.Col5