SQL Server Trigger

Good afternoon, I would like to ask a question, is there a trigger related to Microsoft SQL, or some way to activate a flow based on a change in a Microsoft SQL table/column?

Hey @Cleverson_Henriques,

Welcome to the community :tada:

We don’t have a trigger for MS SQL but I believe it allows you to create triggers in it which can happen on an event so if there is a way to enable that to call a webhook that could do it.

Depending on your data maybe some kind of polling could work if you have a created / last modified date in your table, Failing that you could use a trigger to add items to a view then have a workflow that checks the view for the changes and clears it.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.