SourceCode/PROMS/SQL/TestPasteReplace.sql

21 lines
812 B
Transact-SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

DECLARE @RC int
DECLARE @ItemID int
DECLARE @StartItemID int
DECLARE @Type int
DECLARE @DTS datetime
DECLARE @UserID nvarchar(100)
DECLARE @NewItemID int
SET @ItemID = 9535
SET @StartItemID = 9563
SET @Type = 20002
SET @DTS = getdate()
SET @UserID = 'Kathy'
EXECUTE @RC = [VEPROMS].[dbo].[PasteItemReplace]
@ItemID
,@StartItemID
,@Type
,@DTS
,@UserID
,@NewItemID OUTPUT