Home > Back-end >  What is the maximum number of concurrent INSERT queries for Microsoft SQL Server?
What is the maximum number of concurrent INSERT queries for Microsoft SQL Server?

Time:01-25

If multiple different services send INSERT queries for the same table simultaneously to SQL Server, using their own connections, how many INSERTS can be committed by SQL Server in parallel? Or SQL Server can only process them sequentially?

CodePudding user response:

You can have up to enter image description here

You can see that IX lock on the same PAGE of the first transaction is not blocking the IX on the page of the other one:

enter image description here

In theory the inserts are not blocking each other and can be executed at the same time.

  • Related