dbo.CPL_ZAllForOnePerson
Stored ProcedureSQL_STORED_PROCEDURESandbox DB
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
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
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