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.
|
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 objects using execute immediate to affect the grant. Something like this:
Then you can fire and forget:
|
|||
|
|
|
|
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. |
||
|
|
|
|
There's an undocumented MS procedure called sp_MSforeachtable that you could use which is definately in 2000 and 2005. To grant select permissions the usage would be:
To grant the other permissions either have a new statement for each one or just add them to the command like this:
With a bit of playing around it might be possible to turn the role name into a parameter as well. |
|||
|
|
|
|
We use something similar where I work. Looping through every Tables, Views, Stored Procedures of the system.
|
||
|
|
|
|
use [YourDb] GO exec sp_MSforeachtable @command1=" GRANT DELETE , INSERT , REFERENCES , SELECT , UPDATE ON ? TO Admins, Mgmt" , @whereand = " and o.name like 'tbl_%'" GO use [YourDb] GO exec sp_MSforeachtable @command1=" grant REFERENCES , SELECT ON ? TO Employee, public" , @whereand = " and o.name like 'tbl_%'" GO |
||
|
|
