MS Flow and SQL Triggers

Поділитися
Вставка
  • Опубліковано 1 лис 2024

КОМЕНТАРІ • 15

  • @moazambadane
    @moazambadane 2 роки тому

    Thanks Paul, after hours of research i was ale to resolve problem. I updated table to have row version & it worked like charm.

  • @babajidebantale
    @babajidebantale 3 роки тому

    I had a similar problem and wondered why my flow did not trigger. I will try this method. Thanks Paul.

  • @ObrajInc
    @ObrajInc 2 місяці тому

    thank you so much Paul i am finding solution since a week.

  • @DavesTechTips
    @DavesTechTips 5 років тому

    Thank you Paul, very informative. Also had a few interesting days on SQL and Flow.

  • @thomaskogler
    @thomaskogler 4 роки тому

    Thanks, that was exactly the information I needed after 3 hours of research. :) Thanks for the video Paul!

  • @rickann
    @rickann 3 роки тому

    Super good explanation, thank you very much 😊

  • @jfiltenborg
    @jfiltenborg 3 роки тому

    Thank you Paul! Does the triggers work with On Prem SQL servers as well as cloud?

  • @chinosts
    @chinosts 5 років тому

    Cheers for uploading this video.. very interesting

  • @ML_1515
    @ML_1515 3 роки тому

    Paul, does this work with on-premise SQL servers? We have a gateway.

  • @SJ-lv9wf
    @SJ-lv9wf 4 роки тому

    Hi Paul could you make a detailed video for HTTP Get request with OAuth authentication ..TIA

  • @seadude
    @seadude 5 років тому

    Thanks Paul. Great insights.
    One quick question: When you mention that only 2048 rows can be checked by the Flow, is that 2048 changed records or can the table only contain a max 2048 rows?

    • @pauloflaherty6757
      @pauloflaherty6757  5 років тому

      Hi Eric. The limit is not on the maximum size of the table but on the maximum number of modified rows that are returned to Flow in a single 'check for modifications' .
      I think the behavior is as follows... When Flow checks if any records have been modified since the last check (about 40 seconds previously), it only returns the first 2048 of the *changed* records to Flow (the Flow will then run once for each changed record). So, in the unlikely event you change, say, 3048 rows within the 40 second window, the flow will fire only for the 2048 modified rows returned.
      [Edited based on further checks]
      However, on the next 'flow check' the remaining 1000 modified rows should be picked up, as there is an ORDER BY [timestamp] on the Select statement ensuring that Flow sees the the records in the order in which the modifications were made.
      I think the take-away is that if you have a very large number of modifications in a short space of time, all the records will be processed *eventually* by Flow but it will happen over multiple checks (max on 2048 per check) which are typically 40 seconds apart in my testing.

  • @Harshit-cf7ud
    @Harshit-cf7ud Рік тому

    thank you very good video

  • @sushilpandey1795
    @sushilpandey1795 4 роки тому

    But my flow is not firing on both update and create in sql server 😟😟