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.
ITSM/.svn/pristine/b6/b672472580feb59bd95cd50802b...

29 lines
1.5 KiB

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[my_security_delete] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[my_security_delete]
GO
/****** Object: StoredProcedure [dbo].[my_security_delete] Script Date: 02.12.2016 09:08:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[my_security_delete]
@key INT,
@mutierer int
AS
BEGIN
UPDATE dbo.SecurityObject SET aktiv=0, mutierer=@mutierer,Mutiert_am=GETDATE() WHERE securityobjectnr=@key
END
GO