I am using SQL Server 2008. I tried to modify the table. But this does not allow updating.
How to grant UPDATE permission in SQL Server 2008?
Departure:
Granting and Removing Permissions in SQL Server
or any other worthy SQL Server website or just google for it! There are many sites and books that will show you how to do this in great detail ....
In principle, someone with the necessary permissions needs to be done
GRANT UPDATE ON (your table name) TO (your user name)
and what about it. Of course, you may also need SELECT, INSERT, and other permissions .....
/, .
grant select, insert, update, delete on table to user
. (/ ..), :
grant create, alter, drop on table to user
Source: https://habr.com/ru/post/1748825/More articles:Changing character encoding in MySQL, PHP scripts, HTML - phpForm Based Authentication (.NET) in PHP or other web applications - phpUIView layoutSubviews delegation - iosHow to receive / send files using java Webservice - javaReading lines of classes Java Scanner - javaQt mac: how the layout is different from other OSs - user-interfaceДиалоговое окно tinyMCE modal box - javascriptHow can you start the process with asp.net without interfering with the website? - c #Delete an array of size 1 - c ++Javascript replace HTML char code with actual character - javascriptAll Articles