full permission for a table

  • i need to set permission like full control, insert, update, delete etc .

    so the user can drop index and recreate and truncate data from a table.

    can someone provide a script for this ?

  • GRANT SELECT, UPDATE, INSERT, DELETE, ALTER ON [schema].[tablename] TO [username];

  • thanks.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply