Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们知道在我们自己的查询中选择记录时可以使用表提示。
我的问题是:
当我们创建视图并使用“Nolock”、“Holdlock”等表提示时......然后将视图保存在SQL Server中,我们使用的表提示是否会影响视图?
是的。视图中的任何提示都会影响其使用方式。
注意:视图上的表提示也会传播
SELECT * FROM MyView WITH (NOLOCK)-- hint applies to base tables too