作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的程序中声明了一个表,您可以在下面看到:
Declare @resultTable Table
(
EmpId int,
EmpStatusId int,
CreatedDateTime datetime
)
Delete From ActualTable
Where Id = (Select EmpId from @resultTable with (nolock) where EmpStatusId = @tempId)
Incorrect syntax near the keyword 'with'. If this statement is a common table expression or an xmlnamespaces clause, the previous statement must be terminated with a semicolon.
最佳答案
我想问你是否问对了问题:
您拥有表变量(注意:它不是临时表,而是表变量),因此对它发出 nolock 毫无意义。您似乎希望针对目标表 ActualTable 发出 nolock,但删除必须持有锁。时期。
处理大型删除操作的常用技术是分批行范围发出删除操作。
关于sql - NOLOCK IN 临时表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12633246/
我是一名优秀的程序员,十分优秀!