dbo.GetAllModuleStatus.StoredProcedure.sql 1.52 KB
USE [AIADatabaseV5]
GO
/****** Object:  StoredProcedure [dbo].[GetAllModuleStatus]    Script Date: 02/06/2018 10:49:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		<magicsw>
-- Create date: <10/12/2010>
-- Description:	<Fetch all the module list>
-- =============================================
CREATE PROCEDURE [dbo].[GetAllModuleStatus]
	-- Add the parameters for the stored procedure here
AS
BEGIN
	IF 1=0 BEGIN
		SET FMTONLY OFF
	END
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

    -- Insert statements for procedure here
	SELECT ResourceModule.Id,ResourceModule.Title
	FROM ResourceModule
END
GO