Commit for development environment setup

This commit is contained in:
2023-06-19 16:12:33 -04:00
parent be72063a3c
commit bbce2ad0a6
2209 changed files with 1171775 additions and 625 deletions

View File

@@ -0,0 +1,30 @@
/****** Object: StoredProcedure [getSession] ******/
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[getSession]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
DROP PROCEDURE [getSession];
GO
CREATE PROCEDURE [dbo].[getSession]
(
@SessionID int
)
WITH EXECUTE AS OWNER
AS
SELECT
[SessionID],
[UserID],
[DTSDtart],
[DTSEnd],
[DTSActivity],
[LastChanged],
[MachineName],
[ProcessID]
FROM [Sessions]
WHERE [SessionID]=@SessionID
RETURN
GO
-- Display the status of Proc creation
IF (@@Error = 0) PRINT 'Procedure Creation: getSession Succeeded'
ELSE PRINT 'Procedure Creation: getSession Error on Creation'
GO