SQL Azure 中对 nolock 的支持
有谁知道为什么 SQL Azure 不支持 with nolock
SQL 语句。微软未来有支持这个的计划吗?
Does anyone have an idea as to why SQL Azure does not support with nolock
SQL statements. Does Microsoft has any plans of supporting this in the future?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试在 SQL azure 上运行 nolock 查询,它有效。这让我想到该语句被忽略,因为从技术上讲,您没有设置数据库选项(READ_COMMITTED_SNAPSHOT 和 ALLOW_SNAPSHOT_ISOLATION)的选项。我猜这就是原因,但我会尝试做更多挖掘。
注意:这是 Azure 限制。
您可以找到更多信息 此处:
更新:与两位 über SQL 专家快速讨论后,解决方案似乎是使用如下查询:
因此,对于每个批次,您需要指定隔离级别。
I tried running a nolock query on SQL azure and it works. That got me thinking that the statement is ignored because technically you don't have the option to set the database option (READ_COMMITTED_SNAPSHOT and ALLOW_SNAPSHOT_ISOLATION). I'm guessing this is the reason but I'll try and do some more digging.
Note: this is an Azure limitation.
You can find more information here:
Update: after a quick discussion with two über SQL experts, the solution appears to be to use a query like:
So for every batch, you need to specify the isolation level.