<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Incremental refresh og selected refresh using data pipeline in Pipelines</title>
    <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108576#M5035</link>
    <description>&lt;P&gt;I think you will need to use Notebook to upsert into Lakehouse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an example of upsert here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://microsoftlearning.github.io/mslearn-fabric/Instructions/Labs/03b-medallion-lakehouse.html" target="_blank" rel="noopener"&gt;https://microsoftlearning.github.io/mslearn-fabric/Instructions/Labs/03b-medallion-lakehouse.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an overview of some functions here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.delta.io/latest/delta-update.html" target="_blank" rel="noopener"&gt;https://docs.delta.io/latest/delta-update.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Aug 2024 07:38:01 GMT</pubDate>
    <dc:creator>frithjof_v</dc:creator>
    <dc:date>2024-08-20T07:38:01Z</dc:date>
    <item>
      <title>Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4106253#M5019</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wondering if anyone has done this successfully?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the copy activity to get data from my on-prem sql server. I would like to not overwrite my entire table on each refresh.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I each row has a "UpdatedDate" and I would like to use this to check if it's greater than previous and then refresh, otherwise keep as is and shorten the refresh time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if this is possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 06:18:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4106253#M5019</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2024-08-19T06:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4106708#M5022</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="598190" data-lia-user-login="pbi_taken" class="lia-mention lia-mention-user"&gt;pbi_taken&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use this upsert option to get your desired result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 10:38:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4106708#M5022</guid>
      <dc:creator>rubayatyasmin</dc:creator>
      <dc:date>2024-08-19T10:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108455#M5032</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="565196" data-lia-user-login="rubayatyasmin" class="lia-mention lia-mention-user"&gt;rubayatyasmin&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! Maybe my question was a little misleading. My destination is a Lakehouse and with that it does not give me the option of upserting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could an expression builder solve this, and if so, I do not know..&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 06:44:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108455#M5032</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2024-08-20T06:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108567#M5033</link>
      <description>&lt;P&gt;Are you looking to append the updated rows, or are you looking to do upsert (insert new rows and update existing rows with changes)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to do an upsert, I think you will need to include a Notebook to do the upsert for a Lakehouse destination.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 07:19:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108567#M5033</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-08-20T07:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108570#M5034</link>
      <description>&lt;P&gt;looking to upsert.. append is an option, but not useable in my situation&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 07:19:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108570#M5034</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2024-08-20T07:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108576#M5035</link>
      <description>&lt;P&gt;I think you will need to use Notebook to upsert into Lakehouse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an example of upsert here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://microsoftlearning.github.io/mslearn-fabric/Instructions/Labs/03b-medallion-lakehouse.html" target="_blank" rel="noopener"&gt;https://microsoftlearning.github.io/mslearn-fabric/Instructions/Labs/03b-medallion-lakehouse.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an overview of some functions here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.delta.io/latest/delta-update.html" target="_blank" rel="noopener"&gt;https://docs.delta.io/latest/delta-update.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 07:38:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108576#M5035</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-08-20T07:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108583#M5036</link>
      <description>&lt;P&gt;Please vote for this idea:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Support UPSERTs and DELETEs when copying data into Lakehouse Tables from Pipeline copy activity, as opposed to Appending new rows&lt;/P&gt;&lt;P&gt;&lt;A href="https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=87f3d168-6022-ee11-a81c-6045bdc01ce4" target="_blank"&gt;https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=87f3d168-6022-ee11-a81c-6045bdc01ce4&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the Ideas site, it says this is under planning, but it has been under planning for a year already. Your vote can highlight the urgency for getting this much-needed feature.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 07:28:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4108583#M5036</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-08-20T07:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh og selected refresh using data pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4109467#M5043</link>
      <description>&lt;P&gt;There is not currently a way to do this with only the Copy Data activity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to use auxiliary/raw/landing tables, you cannot update a Lakehouse table with the SQL Endpoint. You can with a Notebook.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to write with SQL, you can use auxiliary/raw/landing tables in a Warehouse and make a shortcut inside the Lakehouse pointing to the Warehouse table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2024 14:58:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Pipelines/Incremental-refresh-og-selected-refresh-using-data-pipeline/m-p/4109467#M5043</guid>
      <dc:creator>mikeburek</dc:creator>
      <dc:date>2024-08-20T14:58:22Z</dc:date>
    </item>
  </channel>
</rss>

