dbo.QBM_TIQBMDBPrincipal
Database TriggerSQL_TRIGGERSandbox DB
Interpretation
- Database trigger. Treat parent table and enqueue/object-layer calls as the main relation points.
- DBQueue relation detected. Follow the task procedure and referenced-by list for async processing.
Relations
- Bulk DBQueue insert -> QBM-K-DBPrincipalCreate / QBM_ZDBPrincipalCreate at line 4
- References QBM_PDBQueueInsert_Bulk
- Trigger parent table: QBMDBPrincipal
Typed Edges
- queues DBQueue task QBM_ZDBPrincipalCreate at line 4 Bulk DBQueue insert -> QBM-K-DBPrincipalCreate / QBM_ZDBPrincipalCreate at line 4
- trigger on table QBMDBPrincipal Trigger parent table: QBMDBPrincipal
- references source dbo.QBM_FGISessionContext source text reference
- references source dbo.QBM_PDBQueueInsert_Bulk source text reference
- references source dbo.QBM_PSessionErrorAdd source text reference
References
Referenced By
Complete Source
1CREATE trigger QBM_TIQBMDBPrincipal2 ON QBMDBPrincipal FOR3INSERT NOT FOR Replication4AS5BEGIN6 BEGIN TRY7 IF EXISTS(8 SELECT TOP 1 19 FROM inserted)10 GOTO start11 RETURN start:12 DECLARE @GenProcID varchar(38)13 SELECT @GenProcID = dbo.QBM_FGISessionContext('')14 DECLARE @DBQueueElements_01 QBM_YDBQueueRaw15 INSERT INTO @DBQueueElements_01(object,16 subobject,17 genprocid)18 SELECT19 x.uid,20 NULL,21 @GenProcID22 FROM(23 SELECT UID_QBMDBPrincipal AS uid24 FROM inserted25 WHERE26 LoginName > ' ') AS x27 EXEC QBM_PDBQueueInsert_Bulk 'QBM-K-DBPrincipalCreate',28 @DBQueueElements_0129 END TRY30 BEGIN CATCH31 EXEC QBM_PSessionErrorAdd DEFAULT32 RAISERROR('',33 18,34 1)35 WITH NOWAIT36 END CATCH37END
Open raw exported source
1 create trigger QBM_TIQBMDBPrincipal on QBMDBPrincipal for Insert not for Replication as begin BEGIN TRY if exists (select top 1 1 from inserted2) goto start return start: declare @GenProcID varchar(38) select @GenProcID = dbo.QBM_FGISessionContext('') declare @DBQueueElements_01 QBM_YDBQueueRaw3 insert into @DBQueueElements_01 (object, subobject, genprocid) select x.uid, null, @GenProcID from ( select UID_QBMDBPrincipal as uid from inserted where4 LoginName > ' ' ) as x exec QBM_PDBQueueInsert_Bulk 'QBM-K-DBPrincipalCreate', @DBQueueElements_01 END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default5 RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 6