52 lines
1.0 KiB
Transact-SQL
52 lines
1.0 KiB
Transact-SQL
USE [FabApprovalSystem]
|
|
GO
|
|
/****** Object: StoredProcedure [dbo].[ITARAccessUpdateInsert] Script Date: 11/21/2024 11:29:04 AM ******/
|
|
SET
|
|
ANSI_NULLS ON
|
|
GO
|
|
SET
|
|
QUOTED_IDENTIFIER ON
|
|
GO
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date,,>
|
|
-- Description: <Description,,>
|
|
-- =============================================
|
|
CREATE PROCEDURE [dbo].[ITARAccessUpdateInsert] @UserID VARCHAR(20),
|
|
@HasITARAccess CHAR(1) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from
|
|
-- interfering with SELECT statements.
|
|
SET
|
|
NOCOUNT ON;
|
|
|
|
INSERT INTO
|
|
EventLog (UserID, DocumentType, OperationType, Comments)
|
|
VALUES
|
|
(
|
|
@UserID,
|
|
'Login',
|
|
'Login',
|
|
'ITAR Access = ' + @HasITARAccess
|
|
) IF EXISTS (
|
|
SELECT
|
|
*
|
|
FROM
|
|
SAMUsers
|
|
WHERE
|
|
UserID = @UserID
|
|
) BEGIN
|
|
UPDATE
|
|
SAMUsers
|
|
SET
|
|
HasITARAccess = @HasITARAccess,
|
|
LastUpdated = GETDATE()
|
|
WHERE
|
|
UserID = @UserID
|
|
END
|
|
ELSE BEGIN
|
|
INSERT INTO
|
|
SAMUsers (UserID, HasITARAccess)
|
|
VALUES
|
|
(@UserID, @HasITARAccess)
|
|
END
|
|
END
|
|
GO |