Back to OIM Explorer

dbo.CPL_ZAllForOnePerson

Stored ProcedureSQL_STORED_PROCEDURESandbox DB

Stored Procedure.

Source: sandbox-db sys.sql_modules

Source size: 272 characters

Interpretation

  • Database routine. Review parameters, called procedures, DBQueue inserts, and QBM_PJobCreate helper calls before assuming side effects.

Relations

  • No extracted relations.

Typed Edges

  • references source dbo.QBM_FGISessionContext source text reference
  • references source dbo.QBM_PSessionErrorAdd source text reference

References

Referenced By

  • No direct source references extracted.

Complete Source

SQL17 lines
1CREATE PROCEDURE CPL_ZAllForOnePerson(2  @SlotNumber int3)4AS5BEGIN6  BEGIN TRY7    DECLARE @GenProcID varchar(38)8    SELECT @GenProcID = dbo.QBM_FGISessionContext('')9  END TRY10  BEGIN CATCH11    EXEC QBM_PSessionErrorAdd DEFAULT12    RAISERROR('',13    18,14    1)15      WITH NOWAIT16  END CATCH17END
Open raw exported source
SQL ยท Raw3 lines
1    create   procedure CPL_ZAllForOnePerson (@SlotNumber int) as begin BEGIN TRY declare @GenProcID varchar(38) select @GenProcID = dbo.QBM_FGISessionContext2('')     END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 3