Feb 23, 2009 #1 cmsbuffet Programmer Feb 3, 2009 173 CA How do I grant execute to the read only user? How does read only user show in the command? Code: grant privileges to ....
How do I grant execute to the read only user? How does read only user show in the command? Code: grant privileges to ....
Feb 24, 2009 #2 jbenson001 Programmer Jan 7, 2004 8,172 US Grant Execute ON "sp name" to "the user you created Upvote 0 Downvote
Feb 24, 2009 Thread starter #3 cmsbuffet Programmer Feb 3, 2009 173 CA So the code below is OK? Code: Drop Procedure A go Create Procedure A go Grant Execute ON A to READONLYUSER go And Code: Drop Function A go Create Function A go Grant Execute ON A to READONLYUSER go Upvote 0 Downvote
So the code below is OK? Code: Drop Procedure A go Create Procedure A go Grant Execute ON A to READONLYUSER go And Code: Drop Function A go Create Function A go Grant Execute ON A to READONLYUSER go