in our environment, reports are running on the subscriber and resulting in deadlocks with MS Replication SPs, which are doing inserts/updates. What's the best way to eliminate the deadlocks?
We have several views with so many dependencies without NOLOCK
.
What is the best option:
Updating all the views with
NOLOCK
or
- Using the
READ UNCOMMITTED ISOLATION LEVEL
Or some other best option?