Back to OIM Explorer

dbo.QBM_TDDialogCountryHasTimeZone

Database TriggerSQL_TRIGGERSandbox DB

Database Trigger on DialogCountryHasTimeZone. Bulk DBQueue insert -> QBM-K-CommonCountryUTCOffset / QBM_ZCountryUTCOffset at line 4; References QBM_PDBQueueInsert_Bulk; Trigger parent table: DialogCountryHasTimeZone

Source: sandbox-db sys.sql_modules

Source size: 676 characters

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-CommonCountryUTCOffset / QBM_ZCountryUTCOffset at line 4
  • References QBM_PDBQueueInsert_Bulk
  • Trigger parent table: DialogCountryHasTimeZone

Typed Edges

  • queues DBQueue task QBM_ZCountryUTCOffset at line 4 Bulk DBQueue insert -> QBM-K-CommonCountryUTCOffset / QBM_ZCountryUTCOffset at line 4
  • trigger on table DialogCountryHasTimeZone Trigger parent table: DialogCountryHasTimeZone
  • 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

  • No direct source references extracted.

Complete Source

SQL36 lines
1CREATE trigger QBM_TDDialogCountryHasTimeZone2  ON DialogCountryHasTimeZone 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    DECLARE @DBQueueElements_01 QBM_YDBQueueRaw15    INSERT INTO @DBQueueElements_01(object,16    subobject,17    genprocid)18    SELECT19      x.uid,20      NULL,21      @GenProcID22    FROM(23    SELECT24      DISTINCT i.UID_DialogCountry AS uid25    FROM deleted i) AS x26    EXEC QBM_PDBQueueInsert_Bulk 'QBM-K-CommonCountryUTCOffset',27      @DBQueueElements_0128  END TRY29  BEGIN CATCH30    EXEC QBM_PSessionErrorAdd DEFAULT31    RAISERROR('',32    18,33    1)34      WITH NOWAIT35  END CATCH36END
Open raw exported source
SQL ยท Raw6 lines
1create   trigger QBM_TDDialogCountryHasTimeZone on DialogCountryHasTimeZone  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('') declare @DBQueueElements_013 QBM_YDBQueueRaw insert into @DBQueueElements_01 (object, subobject, genprocid) select x.uid, null, @GenProcID from (select distinct i.UID_DialogCountry4 as uid from deleted i ) as x exec QBM_PDBQueueInsert_Bulk 'QBM-K-CommonCountryUTCOffset', @DBQueueElements_01 END TRY BEGIN CATCH exec QBM_PSessionErrorAdd5 default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 6