/****** Object: StoredProcedure [dbo].[sp_RunPermissions] Script Date: 03/26/2012 19:24:32 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Juan Soto -- Create date: 3/1/11 -- Description: Master Procedure that will run all other stored procedures -- ============================================= CREATE PROCEDURE [dbo].[sp_RunPermissions] AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; -- Insert statements for procedure here Exec sp_GrantAdmin Exec sp_GrantClient Exec sp_GrantEmployee END