Can’t access / run a stored procedure in SQL


If the stored procedure was newly created odds are it needs to be granted permissions to execute for the given user

Run this command

GRANT EXEC ON [Stored Proc Name] TO [USERNAME]

Recent Content