有谁知道为什么我看不到我新创建的存储过程?这是权限问题吗?
这是存储过程的副本,以防万一......
ALTER PROCEDURE [dbo].[GetDrugSetHistory]
@ProfileID int
AS
BEGIN
SELECT distinct s.*
from Prescriptions p
LEFT JOIN Sets s ON p.SetID = s.SetID
where p.ProfileID = @ProfileID
END
答案 0 :(得分:2)
好的,明白了。这是一个SQL Server权限问题。进入用户帐户属性并授予一堆权限。现在出现存储过程。