Granting EXECUTE Permissions on All Stored Procedures
Something Iâve had to do often. Until now, Iâve gone through the âlaborousâ (hehe) process of remembering what stored procedures Iâve added and granting EXECUTE permissions to whatever user for each procedure. I was sure that there was an easier way to grant the permission on all stored procedures, and there is!
GRANT EXECUTE TO [Insert the name of the user here]
If youâre using SQL Server 2000, you donât have it so easy. However, hereâs an article on how to create a stored procedure to do the same.