You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.5 KiB
42 lines
2.5 KiB
USE [Vertragsverwaltung_20160404]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[dt_checkinobject_u] Script Date: 02.12.2016 09:08:54 ******/
|
|
DROP PROCEDURE [dbo].[dt_checkinobject_u]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[dt_checkinobject_u] Script Date: 02.12.2016 09:08:54 ******/
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
SET QUOTED_IDENTIFIER OFF
|
|
GO
|
|
create proc [dbo].[dt_checkinobject_u]
|
|
@chObjectType char(4),
|
|
@vchObjectName nvarchar(255),
|
|
@vchComment nvarchar(255)='',
|
|
@vchLoginName nvarchar(255),
|
|
@vchPassword nvarchar(255)='',
|
|
@iVCSFlags int = 0,
|
|
@iActionFlag int = 0, /* 0 => AddFile, 1 => CheckIn */
|
|
@txStream1 text = '', /* drop stream */ /* There is a bug that if items are NULL they do not pass to OLE servers */
|
|
@txStream2 text = '', /* create stream */
|
|
@txStream3 text = '' /* grant stream */
|
|
|
|
as
|
|
-- This procedure should no longer be called; dt_checkinobject should be called instead.
|
|
-- Calls are forwarded to dt_checkinobject to maintain backward compatibility.
|
|
set nocount on
|
|
exec dbo.dt_checkinobject
|
|
@chObjectType,
|
|
@vchObjectName,
|
|
@vchComment,
|
|
@vchLoginName,
|
|
@vchPassword,
|
|
@iVCSFlags,
|
|
@iActionFlag,
|
|
@txStream1,
|
|
@txStream2,
|
|
@txStream3
|
|
|
|
|
|
|
|
GO
|