dbo.QBM_TDDialogColumnHasSemaphor
Database TriggerSQL_TRIGGERSandbox DB
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 source dbo.QBM_TDDialogColumn source text reference
References
Referenced By
- No direct source references extracted.
Complete Source
1CREATE trigger QBM_TDDialogColumnHasSemaphor2 ON DialogColumnHasSemaphor FOR3DELETE NOT FOR Replication4AS5BEGIN6 BEGIN TRY7 IF EXISTS(8 SELECT TOP 1 19 FROM deleted)10 GOTO start11 RETURN start:12 DECLARE @GenProcID varchar(38)13 SELECT @GenProcID = dbo.QBM_FGISessionContext('')14 END TRY15 BEGIN CATCH16 EXEC QBM_PSessionErrorAdd DEFAULT17 RAISERROR('',18 18,19 1)20 WITH NOWAIT21 END CATCH22END
Open raw exported source
1 create trigger QBM_TDDialogColumnHasSemaphor on DialogColumnHasSemaphor for Delete not for Replication as begin BEGIN TRY if exists (select2 top 1 1 from deleted) goto start return start: declare @GenProcID varchar(38) select @GenProcID = dbo.QBM_FGISessionContext('') END TRY BEGIN CATCH exec3 QBM_PSessionErrorAdd default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 4