开发者

default concurrency control for sql server 2005

what is the default concurrency control for SQL Server 2005? Is it optimistic concurrency control or pessimistic concurrency control? Can this be se开发者_JAVA百科t?

Thanks in anticipation


"Pessimistic" seems to be the default in 2005, although snapshot isolation can be activated if desired:

In the default pessimistic model, the first writer will block all subsequent writers, but using SI, subsequent writers could actually receive error messages and the application would need to resubmit the original request.

http://msdn.microsoft.com/en-us/library/cc917674.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜