September 6, 2010 at 2:39 pm
Any input will be greatly appreciated.
September 6, 2010 at 9:02 pm
db_datawriter
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
September 7, 2010 at 7:17 am
I tend not to like db_datawriter as it grants rights to insert/update/dlete to all tables. You might have exceptions, especially if you do any auditing.
I prefer to create a user role and then assign the permissions to tables in that role. For changing data, you need insert/update/delete permissions.
September 7, 2010 at 7:43 am
if this is via an application ideally there should be no direct access and rights are controlled via the code (which to me means stored procedures and exec rights on those procedures)
---------------------------------------------------------------------
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply