In SQL Server, you can use the with (nolock) keyword in your select statements. For example:
Select table1.columna, table2.columna from table1 with(nolock), table2 with(nolock)
Be sure to specify (nolock) for each table / view in the query.
Joe barone
source share