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/60/60ea0db37c53d0d3d830db06650...

61 lines
3.0 KiB

USE [Vertragsverwaltung_20160404]
GO
/****** Object: StoredProcedure [dbo].[pr_Vertragstyp_Insert] Script Date: 02.12.2016 09:08:54 ******/
DROP PROCEDURE [dbo].[pr_Vertragstyp_Insert]
GO
/****** Object: StoredProcedure [dbo].[pr_Vertragstyp_Insert] Script Date: 02.12.2016 09:08:55 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
---------------------------------------------------------------------------------
-- Stored procedure that will insert 1 row in the table 'Vertragstyp'
-- Gets: @sVertragstyp varchar(50)
-- Gets: @bAlsLizenz bit
-- Gets: @daErstellt_am datetime
-- Gets: @daMutiert_am datetime
-- Gets: @iMutierer int
-- Gets: @bAktiv bit
-- Returns: @iVertragstypnr int
-- Returns: @iErrorCode int
---------------------------------------------------------------------------------
CREATE PROCEDURE [dbo].[pr_Vertragstyp_Insert]
@sVertragstyp varchar(50),
@bAlsLizenz bit,
@daErstellt_am datetime,
@daMutiert_am datetime,
@iMutierer int,
@bAktiv bit,
@iVertragstypnr int OUTPUT,
@iErrorCode int OUTPUT
AS
SET NOCOUNT ON
-- INSERT a new row in the table.
INSERT [dbo].[Vertragstyp]
(
[Vertragstyp],
[AlsLizenz],
[Erstellt_am],
[Mutiert_am],
[Mutierer],
[Aktiv]
)
VALUES
(
@sVertragstyp,
@bAlsLizenz,
@daErstellt_am,
@daMutiert_am,
@iMutierer,
@bAktiv
)
-- Get the Error Code for the statement just executed.
SELECT @iErrorCode=@@ERROR
-- Get the IDENTITY value for the row just inserted.
SELECT @iVertragstypnr=SCOPE_IDENTITY()
GO