A couple days ago I was working with a client, they called me they needed desperate help about a query that was running really slow in their system. It was an insert, inserting into a good sized table but not millions of rows by any means. We started looking at it and thinking, so why is your insert statements slow? …

Slow Running System the Other Day Read more »

There are a few ways to stop blocking in SQL Server: It’s important to note that these methods should be considered on a case-by-case basis and depend on the specific needs of your application. It’s always a good idea to test the changes in a test environment before implementing in production. https://stevestedman.com/block_class

Blocking in a SQL Server can have serious consequences if not addressed promptly. If left unchecked, blocking can cause a backlog of queries that can eventually lead to the server becoming unresponsive or even crashing. To avoid this, it’s important to monitor for blocking and take action as soon as it occurs. One way to do this is by setting …

Unresponsive or Crashing Server? Read more »

Blocking in SQL Server can occur when….. one query is holding a lock on a particular resource, such as a table or row, and another query is attempting to acquire a conflicting lock on the same resource. This can cause the second query to wait until the first query releases its lock, which can lead to performance issues and, in …

Blocking in SQL Server 101 Read more »

SQL Server Blocking queries are one of those things that can really bog down your database. You might have plenty of memory, and way more CPU than you need, but a single blocking query may bring your server to a halt. Over the last several years at Stedman Solutions we have done lots of performance tuning assessments, and when we …

SQL Server Blocking Query Monitor + Mentoring Read more »