February 27, 2009 at 6:09 pm
Hi,
How to give readonly permissions to a particular stored procedure in a database in sql server 2000?
February 27, 2009 at 6:57 pm
readonly permissions?
stored procs only have EXECUTE permissions...
do you mean to read the text of procedure from sp_helptext procname,
or
permission to execute EXECUTE the procedure, but have only READONLY permission on the tables it might use?
Lowell
February 27, 2009 at 7:23 pm
could you please tell me how to give execute permissions to a stored procedure from Enterprise manager(GUI). I created a login abc with default database master and I need to give access to this abc login to a stored procedure SP_ABC in database Mydb.
Thanks
February 27, 2009 at 7:42 pm
Lookup GRANT and ROLES in Books Online... it comes free with SQL Server.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 1, 2009 at 10:06 am
Mani (2/27/2009)
I created a login abc with default database master and I need to give access to this abc login to a stored procedure SP_ABC in database Mydb.
have you mapped this user to the database yet
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" 😉
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply