set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROCEDURE [dbo].[sp_Select_Users_By_ID] @UserID uniqueidentifier as
BEGIN
select * from Users where Users.UserID = @UserID
end
  消息 208,级别 16,状态 6,过程 sp_Select_Users_By_ID,第 5 行
对象名  'dbo.sp_Select_Users_By_ID' 无效。