-1

How to change read_only to read_write in vb.net SQL Server database connection? Error message:

Failed to update databse because the database is read_only

abatishchev
  • 98,240
  • 88
  • 296
  • 433
Ray
  • 11
  • 1
  • 4

2 Answers2

1

This change will need to be made at the database server - see the article below for details:

http://social.msdn.microsoft.com/forums/en-US/sqlgetstarted/thread/7925902b-9d6f-445a-8432-e58e7580d65d/

DaveRead
  • 3,371
  • 1
  • 21
  • 24
0
exec sp_addrolemember db_datawriter, MYUSER
abatishchev
  • 98,240
  • 88
  • 296
  • 433