Back to OIM Explorer

dbo.QBM_TIAssembly_DialogParameter

Database TriggerSQL_TRIGGERSandbox DB

Database Trigger on DialogParameter. Single DBQueue insert -> QBM-K-ScriptAssemblyReset / QBM_ZScriptAssemblyReset at line 3; References QBM_PDBQueueInsert_Single; Trigger parent table: DialogParameter

Source: sandbox-db sys.sql_modules

Source size: 586 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

  • Single DBQueue insert -> QBM-K-ScriptAssemblyReset / QBM_ZScriptAssemblyReset at line 3
  • References QBM_PDBQueueInsert_Single
  • Trigger parent table: DialogParameter

Typed Edges

  • queues DBQueue task QBM_ZScriptAssemblyReset at line 3 Single DBQueue insert -> QBM-K-ScriptAssemblyReset / QBM_ZScriptAssemblyReset at line 3
  • trigger on table DialogParameter Trigger parent table: DialogParameter
  • references source dbo.QBM_FGISessionContext source text reference
  • references source dbo.QBM_PDBQueueInsert_Single source text reference
  • references source dbo.QBM_PSessionErrorAdd source text reference

References

Referenced By

  • No direct source references extracted.

Complete Source

SQL32 lines
1CREATE trigger QBM_TIAssembly_DialogParameter2  ON DialogParameter FOR3INSERT NOT FOR Replication4AS5BEGIN6  DECLARE @GenProcID varchar(38) = dbo.QBM_FGISessionContext('')7  BEGIN TRY8    IF EXISTS(9      SELECT TOP 1 110      FROM inserted)11    GOTO start12    RETURN start:13    IF EXISTS(14      SELECT TOP 1 115      FROM inserted16      WHERE17        ValidationScript > ' ' OR ValueScript > ' ' OR OnPropertyChangedScript > ' ')18    BEGIN19      EXEC QBM_PDBQueueInsert_Single 'QBM-K-ScriptAssemblyReset',20      'Parameters',21      '#',22        @GenProcID23    END24  END TRY25  BEGIN CATCH26    EXEC QBM_PSessionErrorAdd DEFAULT27    RAISERROR('',28    18,29    1)30      WITH NOWAIT31  END CATCH32END
Open raw exported source
SQL ยท Raw5 lines
1  create   trigger QBM_TIAssembly_DialogParameter on DialogParameter  for Insert not for Replication as begin  declare @GenProcID varchar(38) = 2dbo.QBM_FGISessionContext('') BEGIN TRY if exists (select top 1 1 from inserted) goto start return start: if exists (select top 1 1 from inserted where3 ValidationScript > ' ' or ValueScript > ' ' or OnPropertyChangedScript > ' ' ) begin exec QBM_PDBQueueInsert_Single 'QBM-K-ScriptAssemblyReset', 'Parameters'4, '#', @GenProcID  end END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH end 5