What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T00:38:23Zhttp://stackoverflow.com/feeds/question/44780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references2What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?Scott A. Lawrence2008-09-04T21:05:31Z2009-11-02T19:09:49Z
<p>Ideally, this script could be run multiple times, as new tables were added to the database. SQL Server Management Studio generates scripts for individual database objects, but I'm looking for more of a "fire-and-forget" script.</p>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/44841#448412Answer by Dr Zimmerman for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?Dr Zimmerman2008-09-04T21:30:34Z2008-09-04T21:30:34Z<p>I'm sure there is an easier way, but you could loop through the sysobjects table in the database and grant permissions to any user table objects that exist. You could then run that multiple times whenever new tables are added.</p>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/45907#459071Answer by ninesided for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?ninesided2008-09-05T14:20:54Z2008-11-12T07:14:14Z<p>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:</p>
<pre><code> 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 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
</code></pre>
<p>Then you can fire and forget:</p>
<pre><code>EXEC sp_grantastic
</code></pre>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/45920#459200Answer by Pascal Paradis for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?Pascal Paradis2008-09-05T14:28:16Z2008-09-05T14:28:16Z<p>We use something similar where I work. Looping through every Tables, Views, Stored Procedures of the system. </p>
<pre><code>CREATE PROCEDURE dbo.SP_GrantFullAccess
@username varchar(300)
AS
DECLARE @on varchar(300)
DECLARE @count int
SET @count = 0
PRINT 'Granting access to user ' + @username + ' on the following objects:'
DECLARE c CURSOR FOR
SELECT name FROM sysobjects WHERE type IN('U', 'V', 'SP', 'P') ORDER BY name
OPEN c
FETCH NEXT FROM c INTO @on
WHILE @@FETCH_STATUS = 0
BEGIN
SET @count = @count + 1
EXEC('GRANT ALL ON [' + @on + '] TO [' + @username + ']')
--PRINT 'GRANT ALL ON [' + @on + '] TO ' + @username
PRINT @on
FETCH NEXT FROM c INTO @on
END
CLOSE c
DEALLOCATE c
PRINT 'Granted access to ' + cast(@count as varchar(4)) + ' object(s).'
GO
</code></pre>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/52897#528971Answer by BelowNinety for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?BelowNinety2008-09-09T21:02:06Z2008-09-15T13:31:25Z<p>There's an undocumented MS procedure called sp_MSforeachtable that you could use which is definately in 2000 and 2005. </p>
<p>To grant select permissions the usage would be: </p>
<pre><code>exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName'
</code></pre>
<p>To grant the other permissions either have a new statement for each one or just add them to the command like this: </p>
<pre><code>exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName; Grant Delete on ? to RoleName;'
</code></pre>
<p>With a bit of playing around it might be possible to turn the role name into a parameter as well.</p>
http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/1663058#16630580Answer by CSecord for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?CSecord2009-11-02T19:09:49Z2009-11-02T19:09:49Z<p>use [YourDb]
GO
exec sp_MSforeachtable @command1="
GRANT DELETE
, INSERT
, REFERENCES
, SELECT
, UPDATE
ON ?
TO
Admins,
Mgmt"
, @whereand = " and o.name like 'tbl_%'"
GO</p>
<p>use [YourDb]
GO
exec sp_MSforeachtable @command1="
grant
REFERENCES
, SELECT
ON ?
TO
Employee,
public"
, @whereand = " and o.name like 'tbl_%'"
GO</p>