Generate GRANT EXEC script for existing users in the databaseApril 30, 2004
>>Script Language and Platform: MS SQL Server Author: MAK
set quoted_identifier off
go
select 'grant execute on '+a.name+ ' to ' + user_name(b.uid)
from sysobjects a ,sysprotects b
where a.type in ('P','Fn')
and user_name(b.uid) <>'public'
and a.name not like 'dt_%'
and a.id=b.id and action=224
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 |