I am trying to add with (nolock) in a report query that when run locks the full db making imposssible for other users to use the db.
I can't figure out how to use in this case:
-- this is just an example:
SELECT FIELDS FROM (SELECT * FROM ATABLE) AS SUB
This gives syntax error:
SELECT FIELDS FROM (SELECT * FROM ATABLE) WITH (NOLOCK) AS SUB
where WITH (NOLOCK)
shuold be put?
I am not saying this is a solution to all problems, it is just a test i want to.
Thanks!