Back to OIM Explorer

dbo.QBM_TUIndicator474488

Database TriggerSQL_TRIGGERSandbox DB

Database Trigger on DialogDatabase. Trigger parent table: DialogDatabase

Source: sandbox-db sys.sql_modules

Source size: 179 characters

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

Complete Source

SQL13 lines
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
SQL ยท Raw3 lines
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