Files
ITSM/.svn/pristine/40/40fc28d81aa683dda81a3f9234d80a4f9b131027.svn-base
2021-04-20 09:35:24 +02:00

28 lines
1.7 KiB
Plaintext

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[dt_isundersourcecontrol_u] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[dt_isundersourcecontrol_u]
GO
/****** Object: StoredProcedure [dbo].[dt_isundersourcecontrol_u] Script Date: 02.12.2016 09:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
create proc [dbo].[dt_isundersourcecontrol_u]
@vchLoginName nvarchar(255) = '',
@vchPassword nvarchar(255) = '',
@iWhoToo int = 0 /* 0 => Just check project; 1 => get list of objs */
as
-- This procedure should no longer be called; dt_isundersourcecontrol should be called instead.
-- Calls are forwarded to dt_isundersourcecontrol to maintain backward compatibility.
set nocount on
exec dbo.dt_isundersourcecontrol
@vchLoginName,
@vchPassword,
@iWhoToo
GO