Mặc dù vậy, các giải pháp ở trên sẽ hoàn thành công việc nhưng có nguy cơ làm giảm quyền của người dùng. Tôi muốn tạo hoặc thay thế các chế độ xem hoặc các thủ tục được lưu trữ của mình như sau.
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[vw_myView]'))
EXEC sp_executesql N'CREATE VIEW [dbo].[vw_myView] AS SELECT ''This is a code stub which will be replaced by an Alter Statement'' as [code_stub]'
GO
ALTER VIEW [dbo].[vw_myView]
AS
SELECT 'This is a code which should be replaced by the real code for your view' as [real_code]
GO