dbo.RPS_ZAllForOneOrg
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_PSessionErrorAdd source text reference
Complete Source
1CREATE PROCEDURE RPS_ZAllForOneOrg(2 @SlotNumber int3)4AS5BEGIN6 BEGIN TRY7 DECLARE @dummy int8 END TRY9 BEGIN CATCH10 EXEC QBM_PSessionErrorAdd DEFAULT11 RAISERROR('',12 18,13 1)14 WITH NOWAIT15 END CATCH16END
Open raw exported source
1 create procedure RPS_ZAllForOneOrg (@SlotNumber int) as begin BEGIN TRY declare @dummy int END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default2 RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 3