Is it possible to read/write into a SQL Server 2005 database, from a VB.NET application, using a user who does NOT have a sysadmin server role?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To read from all tables in a database, there is a Database role called db_datareader. To insert/update/delete from all tables in a database, there is a Database role called db_datawriter.
The user will need to be mapped to a login at the Instance level, but no server roles will be required, especially not sysadmin.