The information in this article applies to:
SUMMARYTwo-phase commit adds no extensions to lock services. Each server knows only about its local locks, which makes it impossible to detect deadlocks that span multiple servers. Until SQL Server provides full distributed update support, you should practice standard deadlock avoidance techniques. MORE INFORMATION
Two applications can deadlock only if they request multiple locks at
different times and in different orders. If an application locks file
A and later locks file B, it can deadlock with another application
only if the second attempts to lock file B before file A. If both
applications lock in the same order, one may wait, but no deadlock
occurs.
Additional query words: 2phase
Keywords : kbusage SSrvServer |
Last Reviewed: November 5, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |