Grant all the stored procedures to a User

To Grant the permission for all the stored procedures to a User we can use the following command:

USE <DatabaseName>
GO
GRANT EXECUTE to <User>;
GO

 

Leave a comment