<?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: Lakehouse Data Not Reflected via SQL Analytics Endpoint - Solution 1 in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5330559#M17455</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1234751"&gt;@odtJitendra&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is known behaviour. After loading data to a lakehouse, I recommend you do a metadata sync, either though the REST API, or using the Pipeline activity to ensure that your SQL Endpoint is up to date.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jul 2026 13:41:58 GMT</pubDate>
    <dc:creator>tayloramy</dc:creator>
    <dc:date>2026-07-30T13:41:58Z</dc:date>
    <item>
      <title>Lakehouse Data Not Reflected via SQL Analytics Endpoint - Solution 1</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5329672#M17450</link>
      <description>&lt;H2&gt;&lt;STRONG&gt;Problem Description&lt;/STRONG&gt;&lt;/H2&gt;&lt;P&gt;Every Fabric Lakehouse automatically provisions a SQL Analytics Endpoint (SAE) that allows the data written into Delta tables to be queried using T-SQL. In our pipelines, we write data into a Lakehouse (via notebooks, Dataflows Gen2, or pipeline Copy activities) and then immediately trigger a downstream activity — typically a Copy or Stored Procedure activity — that reads from the Lakehouse through the SQL Analytics Endpoint to insert that data into a Fabric Warehouse. We have repeatedly observed that when the downstream activity runs immediately after the Lakehouse write, it either inserts stale (old) data, misses newly added rows, or fails to pick up schema changes such as new/renamed columns. The Warehouse ends up out of sync with the Lakehouse even though the pipeline reports success on every activity.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Workaround A — Force an on-demand metadata sync before reading&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Before the downstream Warehouse-load activity runs, explicitly trigger a metadata refresh on the SQL Analytics Endpoint (via the Fabric REST API, or the 'Refresh' action in the SAE explorer) and poll until the sync status reports complete, rather than assuming the data is ready.&lt;/P&gt;&lt;P&gt;Anyone facing the same ?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2026 08:00:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5329672#M17450</guid>
      <dc:creator>odtJitendra</dc:creator>
      <dc:date>2026-07-30T08:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Data Not Reflected via SQL Analytics Endpoint - Solution 1</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5330289#M17453</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1234751"&gt;@odtJitendra&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Yes, this behavior has been observed by multiple users. The SQL Analytics Endpoint (SAE) does not always synchronize immediately after data is written into a Lakehouse. Even though the upstream write activity completes successfully, there can be a short delay before newly added rows, schema changes, or metadata updates are reflected in the SAE. As a result, downstream T‑SQL operations may occasionally read stale data or miss schema changes if they execute right after the write.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Your workaround of triggering an explicit SQL Analytics Endpoint metadata refresh and waiting for the synchronization to complete before running the downstream activity is a valid approach. Alternatively, adding a retry mechanism or a short delay before querying the endpoint can also help mitigate the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this behavior continues to impact your production workloads despite these workarounds, it's recommended to open a &lt;A href="https://support.fabric.microsoft.com/" target="_blank"&gt;Microsoft Fabric Support and Status | Microsoft Fabric&lt;/A&gt;&amp;nbsp; so the Fabric team can investigate whether the synchronization delay is longer than expected for your environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Useful Links :&amp;nbsp;&lt;STRONG&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/sql-analytics-endpoint-metadata-sync" target="_blank"&gt;SQL Analytics Endpoint Metadata Sync - Microsoft Fabric | Microsoft Learn&lt;BR /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2026 11:48:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5330289#M17453</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-07-30T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Data Not Reflected via SQL Analytics Endpoint - Solution 1</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5330559#M17455</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1234751"&gt;@odtJitendra&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is known behaviour. After loading data to a lakehouse, I recommend you do a metadata sync, either though the REST API, or using the Pipeline activity to ensure that your SQL Endpoint is up to date.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2026 13:41:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5330559#M17455</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-07-30T13:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Data Not Reflected via SQL Analytics Endpoint - Solution 1</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5331992#M17458</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1234751"&gt;@odtJitendra&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Based on your scenario, i recommend using sql enpoint refresh activity in your pipeline and apply on success instead of completion step, this will give you the opportunity to get the latest data in your lakehouse.Thanks&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Murtaza_Ghafoor_0-1785482152355.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1357399iF8DB4202EA9009E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Murtaza_Ghafoor_0-1785482152355.png" alt="Murtaza_Ghafoor_0-1785482152355.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#993300"&gt;If this helps,&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#993300"&gt;✓ Mark as Kudos | Help Others&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2026 07:16:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Data-Not-Reflected-via-SQL-Analytics-Endpoint-Solution/m-p/5331992#M17458</guid>
      <dc:creator>Murtaza_Ghafoor</dc:creator>
      <dc:date>2026-07-31T07:16:07Z</dc:date>
    </item>
  </channel>
</rss>

