May 17, 2018 at 5:20 am
Is there a way to configure it so that any new stored procedures that get created are automatically granted (or inherit) specific permissions?
May 17, 2018 at 9:14 am
You can grant execute on a database or a schema to a user or role. The user or role will inherit execute on all procedures created in that database or schema.
May 17, 2018 at 10:19 am
vnatt - Thursday, May 17, 2018 5:20 AMIs there a way to configure it so that any new stored procedures that get created are automatically granted (or inherit) specific permissions?
Stored procedures are not granted permissions. Users and roles are granted permissions to objects. This might not seem to be helpful, but it's the way to understand how things work and why Thom and Joe's advice work.
May 27, 2018 at 11:29 am
This was removed by the editor as SPAM
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply