Files
ITSM/___Archiv/ITSM_GRC/.svn/pristine/d3/d39078e61d6ab29e613e2219265ebd2ab04e9001.svn-base
2021-04-20 09:35:24 +02:00

28 lines
1.4 KiB
Plaintext

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[dt_getpropertiesbyid_vcs] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[dt_getpropertiesbyid_vcs]
GO
/****** Object: StoredProcedure [dbo].[dt_getpropertiesbyid_vcs] Script Date: 02.12.2016 09:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
create procedure [dbo].[dt_getpropertiesbyid_vcs]
@id int,
@property varchar(64),
@value varchar(255) = NULL OUT
as
set nocount on
select @value = (
select value
from dbo.dtproperties
where @id=objectid and @property=property
)
GO