show/hide this revision's text 3 added 1 characters in body

Dr Zimmerman is on the right track here. I'd be looking to write a stored procedure that has a cursor looping through user objects using execute immediate to affect the grant. Something like this:

 IF EXISTS (
    SELECT 1 FROM sysobjects
    WHERE name = 'sp_grantastic'
    AND type = 'P'
)
DROP PROCEDURE sp_grantastic
GO
CREATE PROCEDURE sp_grantastic
AS
DECLARE
 @object_name VARCHAR(30)
,@time       VARCHAR(8)
,@rights     VARCHAR(20)
,@role       VARCHAR(20)

DECLARE c_objects CURSOR FOR
    SELECT  name
    FROM    sysobjects
    WHERE   type IN ('P', 'U', 'V')
    FOR READ ONLY

BEGIN

    SELECT  @rights = 'ALL'
           ,@role = 'PUBLIC'

    OPEN c_objects
    WHILE (1=1)
    BEGIN
        FETCH c_objects INTO @object_name
        IF @@SQLSTATUS <> 0 BREAK

        SELECT @time = CONVERT(VARCHAR, GetDate(), 108)
        PRINT '[%1!] hitting up table object %2!', @time, @object_name
        EXECUTE('GRANT '+ @rights +' ON '+ @object_name+' TO '+@role)

    END

    PRINT '[%1!] fin!', @time

    CLOSE c_objects
    DEALLOCATE CURSOR c_objects
END
GO
GRANT ALL ON sp_grantastic TO PUBLIC
GO

Then you can fire and forget:

EXEC sp_grantastic
show/hide this revision's text 2 updated to handle views and procedures

Dr Zimmerman is on the right track here. I'd be looking to write a stored procedure that has a cursor looping through user tables objects using execute immediate to affect the grant. Something like this:

 IF EXISTS (
    SELECT 1 FROM sysobjects
    WHERE name = 'sp_grantastic'
    AND type = 'P'
)
DROP PROCEDURE sp_grantastic
GO
CREATE PROCEDURE grantastic
sp_grantastic
AS
DECLARE
 @table_name object_name VARCHAR(30)
,@time       VARCHAR(8)
,@rights     VARCHAR(20)
,@role       VARCHAR(20)

DECLARE c_tables c_objects CURSOR FOR
    SELECT  name
    FROM    sysobjects
    WHERE   type = IN ('P', 'U'
    U', 'V')
    FOR READ ONLY

BEGIN

    SELECT  @rights = 'ALL'
           ,@role = 'PUBLIC'

    OPEN c_tables
    c_objects
    WHILE (1=1)
    BEGIN
        FETCH c_tables c_objects INTO @table_name
        object_name
        IF @@SQLSTATUS <> 0 BREAK

        SELECT @time = CONVERT(VARCHAR, GetDate(), 108)
        PRINT '[%1!] hitting up table %2!', @time, @table_name
        object_name
        EXECUTE('GRANT '+ @rights +' ON '+ @table_name+' object_name+' TO '+@role)

    END

    PRINT '[%1!] fin!', @time

    CLOSE c_tables
    c_objects
    DEALLOCATE CURSOR c_tables
c_objects
END
GO
GRANT ALL ON sp_grantastic TO PUBLIC
GO

Then you can fire and forget:

EXEC sp_grantastic
show/hide this revision's text 1

Dr Zimmerman is on the right track here. I'd be looking to write a stored procedure that has a cursor looping through user tables using execute immediate to affect the grant. Something like this:

CREATE PROCEDURE grantastic
AS
DECLARE
 @table_name VARCHAR(30)
,@time       VARCHAR(8)
,@rights     VARCHAR(20)
,@role       VARCHAR(20)

DECLARE c_tables CURSOR FOR
    SELECT  name
    FROM    sysobjects
    WHERE   type = 'U'
    FOR READ ONLY

BEGIN

    SELECT  @rights = 'ALL'
           ,@role = 'PUBLIC'

    OPEN c_tables
    WHILE (1=1)
    BEGIN
        FETCH c_tables INTO @table_name
        IF @@SQLSTATUS <> 0 BREAK

        SELECT @time = CONVERT(VARCHAR, GetDate(), 108)
        PRINT '[%1!] hitting up table %2!', @time, @table_name
        EXECUTE('GRANT '+ @rights +' ON '+ @table_name+' TO '+@role)

    END

    CLOSE c_tables
    DEALLOCATE CURSOR c_tables
END
GO