Grant Update Permission

shers

Well-known member
Joined
Aug 12, 2007
Messages
86
Programming Experience
1-3
Hi,

How do I grant update permission to a user to one column of one table?
When he updates the table, the error is 'The UPDATE permission was denied on the object.'

Please help.

Thanks
 
In full SQL Server, the syntax is :-

VB.NET:
GRANT INSERT, UPDATE, DELETE ON TEST.dbo.BLAH TO SQLUSERNAME;
 
The user is not an individual user. He is one among the BUILTIN\Users. So how do I go about it.

Thanks
 
Back
Top