Mastering the Delete Data Activity in Microsoft Fabric

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

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

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

    Your videos are so helpful and just when I need them. Thank you!!!

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

      I am very glad that my videos are helpful to you! :)

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

    Hi Aleksi, I really need your help, I am using Fabric Data Pipeline to copy data from one warehouse to another. But the copied data gets appended. But I need to overite the data. Couldnt find that option, is there a workaround for this ?

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

      When doing a copy to a data warehouse you have to define a pre-copy script if you want to do "an overwrite" to that table. Basically you need to truncate the table before loading the data. Pre-copy script can be found under advanced settings in the destination tab of the copy data.
      Script goes like this:
      TRUNCATE TABLE *schema*.*table*;
      For example:
      TRUNCATE TABLE dbo.table1;
      Hope this helps! :)