Is it permitted to alter view with nolock? If so, how should I use it if I want to?
ALTER VIEW dbo.xx_view
AS
SELECT *
FROM dbo.yy
My current issue is that I have to wait for others finish using dbo.xx_view
, then the view can be altered. Is there a way that I can alter the view forcibly, even when others are making queries on it.