Use RCSI to tackle most locking and blocking issues in SQL Server
What’s the best way to avoid most blocking issues in SQL Server? Turn on Read Committed Snapshot Isolation (RCSI). That’s it. Configuring RCS isolation level To see if it’s enabled on your database, use the is_read_committed_snapshot_on column in sys.databases like this: select is_read_committed_snapshot_on from sys.databases where database_id = db_id(); To enable the setting alter the […]
The post Use RCSI to tackle most locking and blocking issues in SQL Server first appeared on Michael J. Swart.