grant_all_to_role.sql | Database Journal

grant_all_to_role.sql

Nov 3, 2001
2 minute read

When creating new database objects or altering old database objects, the one thing that is often overlooked is the object’s permissions. SQL Server Enterprise Manager does not make granting all the permissions you need very easy. In databases with hundreds to thousands of objects, this can be a very time consuming task.

This stored procedure will grant all permissions to a role name that you provide in the @role_name parameter (it will default to public). You may also provide the object owner name in the @object_owner parameter (default is ‘dbo’). It will print out a report at the end to indicate the number of objects that it granted permissions to. It currently works for User Tables, Stored Procedures, Views, Table Functions, and Scalar Functions. It will ignore system objects like system tables, system stored procedures, etc.

However, be aware that this procedure will grant all permissions for the user objects (SELECT, INSERT, UPDATE, DELETE, REFERENCES, EXECUTE). This may not be acceptable for a production database. But it saves loads of time on development databases!

Author: Jason Bohanon

Download Script:
grant_all_to_role.sql



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.