Back to OIM Explorer

dbo.QBM_TDAssembly_DialogColHasSem

Database TriggerSQL_TRIGGERSandbox DB

Database Trigger on DialogColumnHasSemaphor. Trigger parent table: DialogColumnHasSemaphor

Source: sandbox-db sys.sql_modules

Source size: 366 characters

Interpretation

  • Database trigger. Treat parent table and enqueue/object-layer calls as the main relation points.

Relations

  • Trigger parent table: DialogColumnHasSemaphor

Typed Edges

  • trigger on table DialogColumnHasSemaphor Trigger parent table: DialogColumnHasSemaphor
  • 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

SQL21 lines
1CREATE trigger QBM_TDAssembly_DialogColHasSem2  ON DialogColumnHasSemaphor FOR3DELETE NOT FOR Replication4AS5BEGIN6  DECLARE @GenProcID varchar(38) = dbo.QBM_FGISessionContext('')7  BEGIN TRY8    IF EXISTS(9      SELECT TOP 1 110      FROM deleted)11    GOTO start12    RETURN start:13  END TRY14  BEGIN CATCH15    EXEC QBM_PSessionErrorAdd DEFAULT16    RAISERROR('',17    18,18    1)19      WITH NOWAIT20  END CATCH21END
Open raw exported source
SQL ยท Raw4 lines
1 create   trigger QBM_TDAssembly_DialogColHasSem on DialogColumnHasSemaphor  for Delete not for Replication as begin  declare @GenProcID varchar2(38) = dbo.QBM_FGISessionContext('') BEGIN TRY if exists (select top 1 1 from deleted) goto start return start:   END TRY BEGIN CATCH exec QBM_PSessionErrorAdd3 default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 4