dbo.QBM_TUIndicator474488
Database TriggerSQL_TRIGGERSandbox DB
Interpretation
- Database trigger. Treat parent table and enqueue/object-layer calls as the main relation points.
Relations
- Trigger parent table: DialogDatabase
Typed Edges
- trigger on table DialogDatabase Trigger parent table: DialogDatabase
References
- No direct source references extracted.
Referenced By
- dbo.QBM_FSQObjectComment
- dbo.QBM_PGUIDReplaceLight_Multi
- dbo.QBM_PGUIDReplaceLighter
- dbo.QBM_PIndicatorChange
- dbo.QBM_PSQLCreate
- dbo.QBM_PTableReload
- dbo.QBM_PTriggerDisable
- dbo.QBM_PTriggerDrop
- dbo.QBM_PTriggerEnable
- dbo.QBM_PTriggersInactiveForTable
- dbo.QBM_ZConstraintDisable
- dbo.QBM_ZConstraintEnable
- dbo.QBM_ZTaskForInactiveTrigger
Complete Source
1CREATE Trigger QBM_TUIndicator4744882 ON DialogDatabase FOR3UPDATE NOT FOR replication4AS5BEGIN6 BEGIN TRY7 GOTO endLabel8 END TRY9 BEGIN CATCH10 END CATCH11 endLabel:12 RETURN13END
Open raw exported source
1 create Trigger QBM_TUIndicator474488 on DialogDatabase for Update not for replication as begin BEGIN TRY goto endLabel END TRY BEGIN CATCH 2END CATCH endLabel: return end 3