Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 

Proc to script a user role and object permissions

By Neil Jacobson, 2013/05/23

I wanted to be able to prepare a script of User Roles and permissions for objects in a database so I can be prepared for backup and disaster recovery scenarios. I also wanted to be able to audit the permissions for each role.

I wrote this stored procedure to do this.  The usage is:

Use Northwind
go
DECLARE @RC int
DECLARE @RoleName varchar(85)
Select @RoleName = 'exec_proc'
EXEC @RC = dbo.sp_ScriptRole @RoleName
Select @RC

Total article views: 830 | Views in the last 30 days: 5
 
Related Articles
FORUM

Convert ColumnValues to a row.

Query: ------- SELECT RoleName FROM ROLES Output: -------- RoleName --------- Admin User ...

FORUM

Retrieve Multiple Roleid's by passing csv strings into a stored procedure

How to Retrieve roleid's by passing csv strings into stored procedure

FORUM

EXECTE permission on function

Hi, HOw to grant execute permission to all "FUNCTIONS" on the database for particular "USER" ? ...

FORUM

Dynamically getting the columns

I write a query like this select A.userid as 'userid', A.rname as 'Name', A.isactive as ...

FORUM

Problem getting security for configuration database

 Below is what I have put into an execute sql task container.  When I try to run it I have output o...

 
Contribute

Join the most active online SQL Server Community

SQL knowledge, delivered daily, free:

Email address:  

You make SSC a better place

As a member of SQLServerCentral, you get free access to loads of fresh content: thousands of articles and SQL scripts, a library of free eBooks, a weekly database news roundup, a great Q & A platform… And it’s our huge, buzzing community of SQL Server Professionals that makes it such a success.

Join us!

Steve Jones
Editor, SQLServerCentral.com

Already a member? Jump in:

Email address:   Password:   Remember me: Forgotten your password?
Steve Jones