|
-
May 5th, 2009, 01:09 AM
#1
Thread Starter
Hyperactive Member
Grant Update Permission
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
-
May 5th, 2009, 02:45 PM
#2
Re: Grant Update Permission
Which database? Which version?
For SQL Server 2000/7.0
You can supply a list of columns to the Grant statement.
Grant Update (List of Columns) On TableName To User
User's will also need Select permissions in order to use a Where clause in their Update statements.
For SQL Server 2005/2008, you can still use the Grant statement but the syntax is a little different.
You can also use the SQL Server Management Studio to set Column specific permissions for a user.
-
May 6th, 2009, 12:33 AM
#3
Thread Starter
Hyperactive Member
Re: Grant Update Permission
I'm using SQL Server 2008 Express.
This user is one among the BUILTIN\Users. So how do I go about it?
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|