I've a query to run a SQL server table, in which, I am not concerned with the exact count. So, I want to specify NOLOCK for that query. But, query itself consists of multiple subqueries and multiple joins; so, it's quite dirty to put NOLOCK all around.
Although, I can set the transaction level "READ-UNCOMMITTED" for the tables, but that would change it for all other queries as well. I want to change the transaction level for that particular query, but without specifying NOLOCK in the query at multiple places. Is that possible?