Results 1 to 3 of 3

Thread: Grant Update Permission

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2003
    Location
    India
    Posts
    318

    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

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    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.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2003
    Location
    India
    Posts
    318

    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
  •  



Click Here to Expand Forum to Full Width