Microsoft Fabric Copy Jobs: No-Code Solution for Incremental Data Copies!

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ม.ค. 2025

ความคิดเห็น • 2

  • @adilmajeed8439
    @adilmajeed8439 หลายเดือนก่อน +2

    Thanks for sharing. The product needs to be get updated instead of insertion.

    • @AleksiPartanenTech
      @AleksiPartanenTech  หลายเดือนก่อน +1

      You're welcome! What comes to that thing with that update, it is a build in feature since setting up that kind of update logic would be far more complex than this insertion logic. Now I image that this is just using some type of SQL query on the background to get values that have been added/changed after the previous run like this:
      SELECT
      col1
      ,col2
      FROM source
      WHERE col2 > saved_value_for_col2
      -> Then this logic will just insert the rows that result from this query and save the largest value for col2 for the next run.
      --> That update logic (and also delete) logic would be very nice to have in the copy job, but I would assume that they are not going to implement that