Back to OIM Explorer

dbo.QBM_PFESimulationExecute

Stored ProcedureSQL_STORED_PROCEDURESandbox DB

Stored Procedure.

Source: sandbox-db sys.sql_modules

Source size: 366 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_FGISessionErrorRethrow source text reference
  • references source dbo.QBM_PSessionErrorAdd source text reference

References

Referenced By

  • No direct source references extracted.

Complete Source

SQL21 lines
1CREATE PROCEDURE QBM_PFESimulationExecute2AS3BEGIN4  SET XACT_ABORT OFF5  BEGIN TRY6    RAISERROR('exec QBM_PWorkDBQueueMain 998 not available anymore',7    18,8    1)9      WITH nowait10  END TRY11  BEGIN CATCH12    EXEC QBM_PSessionErrorAdd DEFAULT13    DECLARE @Rethrow varchar(1000) = dbo.QBM_FGISessionErrorRethrow()14    RAISERROR(@Rethrow,15    18,16    1)17      WITH NOWAIT18  END CATCH19  endLabel:20  RETURN21END
Open raw exported source
SQL ยท Raw4 lines
1  create   procedure QBM_PFESimulationExecute as begin SET XACT_ABORT OFF BEGIN TRY  RAISERROR('exec QBM_PWorkDBQueueMain 998 not available anymore'2, 18, 1) with nowait END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default declare @Rethrow varchar(1000) = dbo.QBM_FGISessionErrorRethrow() RAISERROR 3(@Rethrow, 18, 1) WITH NOWAIT END CATCH endLabel: return end 4