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

28 lines
1.6 KiB
Plaintext

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[dt_getpropertiesbyid_vcs_u] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[dt_getpropertiesbyid_vcs_u]
GO
/****** Object: StoredProcedure [dbo].[dt_getpropertiesbyid_vcs_u] Script Date: 02.12.2016 09:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
create procedure [dbo].[dt_getpropertiesbyid_vcs_u]
@id int,
@property varchar(64),
@value nvarchar(255) = NULL OUT
as
-- This procedure should no longer be called; dt_getpropertiesbyid_vcsshould be called instead.
-- Calls are forwarded to dt_getpropertiesbyid_vcs to maintain backward compatibility.
set nocount on
exec dbo.dt_getpropertiesbyid_vcs
@id,
@property,
@value output
GO