Hi,
I want a User that he can execute a procedure with db_owner rights. The user does not have the role db_owner, but he needs it for this procedure to work. So I tried this:
GRANT Execute ON myProcedure to myUserName as db_owner
But I get "Grantor does not have GRANT permission." back. What...
Hi,
I don't know if it is possible, but I need to give certain Users the right to add or drop other users to roles. I would need a procedure which will simplified look like this:
CREATE PROCEDURE dbo.add
AS
EXEC sp_addrolemember 'role', 'user'
GO
The Problem is, that no User can execute this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.