ProntoMatt
Programmer
The statement below works just fine:
grant all on NEW_STORED_PROC to 'a99bcde';
A similar statement of
grant all on NEW_STORED_PROC to '038151';
fails with the following message:
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '038151'.
I have verified in the sysusers table that the numeric user exists:
select * from sysusers where name = '038151'
returns 1 row
Any tips on how to give 038151 access to run the NEW_STORED_PROC ?
Thanks!
grant all on NEW_STORED_PROC to 'a99bcde';
A similar statement of
grant all on NEW_STORED_PROC to '038151';
fails with the following message:
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '038151'.
I have verified in the sysusers table that the numeric user exists:
select * from sysusers where name = '038151'
returns 1 row
Any tips on how to give 038151 access to run the NEW_STORED_PROC ?
Thanks!