Logic Apps SQL Trigger 'When Item is Modified' not running

Chris Lupton 1 Reputation point
2025-01-07T13:48:34.92+00:00

I have 2 Stateful Logic App workflows looking at the same table.

One triggers on 'When an item is Created (v2)' and works fine when an insert creates a new record in that table.

The other should trigger on 'When an item is modified (v2)', but when I run an update on any of the existing rows in the target table, nothing happens.

As indicated, Item Creation triggers works, so I'm not sure what could be causing the Item Modified trigger to not pick up?

Thanks

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,323 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Maksym Abramchenko 5 Reputation points
    2025-01-10T08:08:00.7166667+00:00

    Table must have an IDENTITY column for the When an item is created trigger (V2)

    Table must have a ROWVERSION (a.k.a. TIMESTAMP) column for the When an item is modified trigger (V2).

    Try to create a new table with these added columns and recreate the API connection again in your logic app and verify if you are able to see the tables in the dropdown.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.