Back to OIM Explorer

dbo.QBM_ZScheduleStart

Stored ProcedureSQL_STORED_PROCEDURESandbox DB

Stored Procedure.

Source: sandbox-db sys.sql_modules

Source size: 254 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_PSessionErrorAdd source text reference

Complete Source

SQL18 lines
1CREATE PROCEDURE QBM_ZScheduleStart(2  @SlotNumber int3)4AS5BEGIN6  BEGIN TRY7    DECLARE @MyName nvarchar(64) = object_name(@@procid)8  END TRY9  BEGIN CATCH10    EXEC QBM_PSessionErrorAdd DEFAULT11    RAISERROR('',12    18,13    1)14      WITH NOWAIT15  END CATCH16  ende:17  RETURN18END
Open raw exported source
SQL ยท Raw3 lines
1    create   procedure QBM_ZScheduleStart (@SlotNumber int ) AS begin BEGIN TRY declare @MyName nvarchar(64) = object_name(@@procid)  END TRY BEGIN2 CATCH exec QBM_PSessionErrorAdd default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH  ende: return end 3