MS SQL Server 2008 quot;with (nolock)quot; equivalent for IBM DB2 9.7(MS SQL Server 2008 “带(无锁)相当于 IBM DB2 9.7)
问题描述
在 MS SQL Server 2008 中你可以这样写:
In MS SQL Server 2008 you can write like this:
FROM EMPLOYEE as A with (nolock)
DB2 9.7 是否有等效的语法?谢谢
Is there an equivalent syntax for DB2 9.7? Thanks
推荐答案
DB2: Uncommitted Read = WITH UR
DB2: Uncomitted Read = WITH UR
SELECT * FROM whatevertable WITH UR
这篇关于MS SQL Server 2008 “带(无锁)"相当于 IBM DB2 9.7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!