0

I need to grant permissions to a user and then to connect user with userID in a table. I have UserID Column with an ID (125845) for an example, and windows logon is SSchmidt. I want to grant and deny some permissions for this user and to connect the user with his ID. I´ve tried this but i get an error (wrong syntax where "\"):

GRANT SELECT, INSERT, UPDATE ON tbl_Auto TO DADDO_PC\SSchmidt
user3613744
  • 77
  • 1
  • 9

1 Answers1

0

This should do it:

GRANT SELECT, INSERT, UPDATE ON TABLE tbl_Auto TO [DADDO_PC\SSchmidt]
Kris Gruttemeyer
  • 872
  • 7
  • 19