SQL Server - How many type of timeouts can happen, and how?

Well from an application point of view there are:

  • connection timeout (how long the app is willing to wait to establish a connection to SQL Server)
  • command timeout (how long the app is willing to wait for a command to complete, including pulling the results down from SQL Server)

Back in my classic ASP days, the defaults for these were 15 and 30 seconds respectively, I have no idea what they are by default in .NET today.

SQL Server has its own set of timeouts, for example:

  • Remote query timeout. Default is 600 seconds (10 minutes).
  • Remote login timeout. Default is 10 seconds.
  • Query wait. Default is -1 (25 x query cost).
  • Full-text protocol handler timeout. Default is 60 seconds.

You can see these values for your system here:

SELECT * FROM sys.configurations
WHERE configuration_id IN (1519,1520,1541,1557);

There is also @@LOCK_TIMEOUT (which defaults to -1 (infinity)). This is how long SQL Server will wait on a blocked resource. You can override this for a particular session using SET LOCK_TIMEOUT. More details here.

Deadlocks I suppose could also fall into this category as well. The system scans for deadlock situations every 5 seconds, and there is no magic formula to determine when the deadlock will occur in relation to when any of the involved requests started. This is because SQL Server doesn't let the oldest transaction win; it chooses the victim based on DEADLOCK_PRIORITY and the estimated amount of resources required to roll the victim back. More details here.

There is also a memory grant timeout (which may be customized using Resource Governor). Depending on concurrency, a query won't necessarily fail if it reaches the timeout before obtaining all of the memory requested, it will just run with the allocated amount (and therefore might be less efficient). If it fails you will likely see Msg 8645.

You can get an idea for other potential timeout scenarios that may occur within SQL Server by reviewing these error messages:

SELECT message_id, [text]
  FROM sys.messages 
  WHERE language_id = 1033 
  AND ([text] LIKE '%timeout%' OR [text] LIKE '%time out%')

However I don't think it is practical, feasible or productive for anyone to try to provide you with a complete and exhaustive list of every single timeout situation possible. Solve the problems you're having, rather than prematurely solving a whole bunch of problems you probably never will...


There are three different concepts touched on here. Hopefully this gives a good explanation of what they are, and from there you can figure out how to avoid them.

Blocking (aka live locking)
Blocking occurs when a query attempts to acquire a lock, but has to wait in the locking queue before the lock is granted. It can appear from the outside that the query is doing nothing, because it's waiting for the other process(es) to release the lock(s) ahead of it in the queue. Blocking can cause deadlocks if the locks are acquired in a specific order (I describe this below).

Timeouts
Timeouts occur when a client makes a request for a resource and waits for a response. If no response is received within a given period of time, an error is raised by the client instead of waiting forever. Timeouts can occur for a variety of reasons (blocking, or a query doing a ton of work, or the network was really slow, or ...), but all ultimately because the client was waiting, and decided that it didn't want to wait any more.

Deadlocks
Deadlocks occur when two or more processes hold locks on resources, and also try to take locks on resources held by the other process(es). This creates a situation such that neither query can continue unless one of them is terminated/rolled back. I demonstrated how this works in a demo video here.