Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I generated script from old database, created a new database and imported all data from old database. So far so good, however, no user has execute rights for stored procedures. I know I can use

GRANT EXECUTE ON [storedProcName] TO [userName] 

If it was just a few procedures, however, I have about 100 so what's the easiest way for me to grant execute access for a specific user to all of them?

Thanks in advance.

share|improve this question

3 Answers

up vote 12 down vote accepted

Create a role add this role to users, and then you can grant execute to all the routines in one shot to this role.

CREATE ROLE <abc>
GRANT EXECUTE TO <abc>

EDIT
This works in SQL Server 2005, I'm not sure about backward compatibility of this feature, I'm sure anything later than 2005 should be fine.

share|improve this answer
I just tried this on SQL Server 2008 Standard (amazon RDS) and it worked like a charm. – datagod Mar 5 at 6:04
could you please provide an example? lets say i need to grant EXECUTE permissions on all SP's for the user SPExecuter – Uri Abramson Apr 25 at 8:59
the only other statement needed is the line adding the user to the role, like so: ALTER ROLE [abc] ADD MEMBER [user_name] – dhochee May 7 at 17:03

You could use the above suggestion... or query your information schema:

declare @script varchar(max) = ''

select @script += 'grant execute on [' + r.ROUTINE_NAME + '] to <user or role>' + char(13) + char(10)
from INFORMATION_SCHEMA.ROUTINES as r

exec(@script)

This may be useful to you if your Stored Procedure naming convention lends itself to logical grouping... i.e.: you could add a where r.ROUTINE_NAME like 'get%' clause so that you only grant permission to get procedures.

share|improve this answer
This is a better answer because it works for SQL Server 2000. – gbn Mar 25 '11 at 6:06

use below code , change proper database name and user name and then take that output and execute in SSMS. FOR SQL 2005 ABOVE

USE <database_name> 
select 'GRANT EXECUTE ON ['+name+'] TO [userName]  '  from sys.objects  where type ='P' and is_ms_shipped = 0  
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.