What does “lock | communication buffer resources” mean?

后端 未结 3 1401
孤街浪徒
孤街浪徒 2021-01-03 19:22

I have an error log which reports a deadlock:

Transaction (Process ID 55) was deadlocked on lock | communication buffer resources wit

3条回答
  •  天命终不由人
    2021-01-03 19:52

    You can use MAXDOP 1 as a query hint - i.e. run that query on one cpu - without affecting the rest of the server.

    This will avoid the error for that query - doesn't tell you why it's failing but does provide a work-around if you have to get it working fast :-)

提交回复
热议问题