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
相关文章