views:

131

answers:

2

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?

+4  A: 
  • 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.
Leon Bambrick
+1  A: 

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.

Paul G