up vote 2 down vote favorite
share [g+] share [fb]

In Sql Server 2000/2005, I have a few NT user groups that need to be granted access to hundreds of stored procedures.

Is there a nice easy way to do that?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Here's a script that I use for granting permissions to lots of procedures:

DECLARE @DB  sysname ; set @DB = DB_NAME()
DECLARE @U  sysname ; set @U = QUOTENAME('UserID')

DECLARE @ID           integer,
        @LAST_ID     integer,
        @NAME        varchar(1000),
        @SQL         varchar(4000)

SET @LAST_ID = 0

WHILE @LAST_ID IS NOT NULL
BEGIN
    SELECT @ID = MIN(id)
    FROM dbo.sysobjects
    WHERE id > @LAST_ID  AND type = 'P' AND category = 0

    SET @LAST_ID = @ID

    -- We have a record so go get the name
    IF @ID IS NOT NULL
    BEGIN
        SELECT @NAME = name
        FROM dbo.sysobjects
        WHERE id = @ID

        -- Build the DCL to do the GRANT
        SET @SQL = 'GRANT EXECUTE ON ' + @NAME + ' TO ' + @U

        -- Run the SQL Statement you just generated
        EXEC master.dbo.xp_execresultset @SQL, @DB

    END   
END

You can modify the select to get to a more specific group of stored procs.

link|improve this answer
feedback
  • Create a role in sql server.
  • Write a script that grants that role permission to use those sprocs.
  • Add those NT user groups to that role.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.