Welcome to Comunidade Bloggers |create|it| Sign in | Join | Help

Browse by Tags

All Tags » Sql
Sorry, but there are no more tags available to filter with.
GRANT permission to all stored procedures
If you need to grant a specified permission to all stored prcedures you can execute the following script DECLARE @User sysname SET @User = '<USER>' SELECT 'GRANT EXECUTE ON ' + name + ' TO ' + @User FROM sysobjects WHERE Read More...