January 19, 2016 at 8:57 am
Hi Guys,
What rights/privileges should I assign in the database for the functional account. Please share script to create userdefined db role if that is a best practice.
Many thanks.
January 19, 2016 at 9:12 am
--Create the role
create role myApp authorization dbo;
go
--Create users in the db
--Add members to the role
alter role myApp
add member [domain\user];
--etc
--Grant permissions to the role
grant exec on schema::mySchema to myApp
--etc etc
January 19, 2016 at 9:29 am
Thanks Phil. Please advise if the following permissions are good enough.
data reader, data writer, Create role for View/Execute permissions on db level (dbo and all user defined schemas).
January 19, 2016 at 9:44 am
SQL!$@w$0ME (1/19/2016)
Thanks Phil. Please advise if the following permissions are good enough.data reader, data writer, Create role for View/Execute permissions on db level (dbo and all user defined schemas).
I cannot advise on this. The permissions required for your application will be specific to your application.
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply