29 lines
1.5 KiB
Plaintext
29 lines
1.5 KiB
Plaintext
USE [Vertragsverwaltung_20160404]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[sp_rptparams_get_sst] Script Date: 02.12.2016 09:08:53 ******/
|
|
DROP PROCEDURE [dbo].[sp_rptparams_get_sst]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[sp_rptparams_get_sst] Script Date: 02.12.2016 09:08:55 ******/
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
SET QUOTED_IDENTIFIER OFF
|
|
GO
|
|
|
|
|
|
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date,,>
|
|
-- Description: <Description,,>
|
|
-- =============================================
|
|
Create PROCEDURE [dbo].[sp_rptparams_get_sst]
|
|
AS
|
|
BEGIN
|
|
SELECT distinct 0 as keyvalue, dbo.ApplikationArchitekturObjectsst.sst as bezeichnung
|
|
from dbo.ApplikationArchitekturObjectsst
|
|
order by bezeichnung
|
|
END
|
|
|
|
|
|
GO
|