<?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: Table visible in lakehouse but no data visible in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4848722#M12879</link>
    <description>&lt;P&gt;sure, thanks for the update.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Oct 2025 09:00:07 GMT</pubDate>
    <dc:creator>v-prasare</dc:creator>
    <dc:date>2025-10-13T09:00:07Z</dc:date>
    <item>
      <title>Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836521#M12541</link>
      <description>&lt;P&gt;Hi team,&lt;BR /&gt;&lt;BR /&gt;im using Notebook to move data from my silver lakehouse to gold lakehouse along with minor transformations.&lt;BR /&gt;There are 10 tables and 1 table &lt;FONT face="andale mono,times"&gt;which is comparatively bigger than the others shows table schema but no data.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;BR /&gt;I checked the source table and it has data and below are the transformations i do before i overwrite the table.the print also shows its successfully loaded but there will not be any data if i query in lakehouse.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;if i rerun the code it works, but sometimes this happens. Can someone help me to fix this?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;FONT face="andale mono,times"&gt;&lt;img /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 13:39:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836521#M12541</guid>
      <dc:creator>joyeldavis007</dc:creator>
      <dc:date>2025-09-26T13:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836551#M12542</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="652368" data-lia-user-login="joyeldavis007" class="lia-mention lia-mention-user"&gt;joyeldavis007&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;When overwriting a table from a Fabric notebook, make sure you use both:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--      ScriptorStartFragment      --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;gold_path &lt;SPAN&gt;= &lt;SPAN&gt;"Tables/gold_lakehouse/your_table_name"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;df_transformed&lt;SPAN&gt;.write&lt;SPAN&gt; \&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN&gt;.format&lt;SPAN&gt;(&lt;SPAN&gt;"delta"&lt;SPAN&gt;)&lt;SPAN&gt; \&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN&gt;.mode&lt;SPAN&gt;(&lt;SPAN&gt;"overwrite"&lt;SPAN&gt;)&lt;SPAN&gt; \&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN&gt;.option&lt;SPAN&gt;(&lt;SPAN&gt;"overwriteSchema"&lt;SPAN&gt;, &lt;SPAN&gt;"true"&lt;SPAN&gt;)&lt;SPAN&gt; \&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN&gt;.save&lt;SPAN&gt;(&lt;SPAN&gt;gold_path&lt;SPAN&gt;)&lt;!--      ScriptorEndFragment      --&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;DIV class=""&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;overwriteSchema&lt;/STRONG&gt; ensures the schema is correctly updated.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;saveAsTable&lt;/STRONG&gt; guarantees the data is committed into the Lakehouse &lt;EM&gt;Tables area (not just written as loose files).&lt;/EM&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In short: &lt;/SPAN&gt;&lt;STRONG&gt;always use overwriteSchema + saveAsTable and give Fabric a bit of time to sync — otherwise you may see “schema only, no rows” right after the overwrite.&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Hope it can help you !&amp;nbsp;&lt;DIV class=""&gt;Best regards,&lt;DIV class=""&gt;Antoine&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Sep 2025 14:13:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836551#M12542</guid>
      <dc:creator>AntoineW</dc:creator>
      <dc:date>2025-09-26T14:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836564#M12544</link>
      <description>&lt;P&gt;Hey AntoineW,&lt;BR /&gt;&lt;BR /&gt;i lost my code block while posting, i'm already using overwriteschema with saveAsTable.But instead of providing the path i just mentioned the table name inside saveAsTable.Will that might be the issue?&lt;BR /&gt;&lt;BR /&gt;Attaching my code block.&lt;/P&gt;&lt;LI-CODE lang="python"&gt; df.write.format("delta").mode("overwrite").option("overwriteSchema", "true").saveAsTable(resource_gold)
    print(f"✅ Saved gold table: {resource_gold}")&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 26 Sep 2025 14:28:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836564#M12544</guid>
      <dc:creator>joyeldavis007</dc:creator>
      <dc:date>2025-09-26T14:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836580#M12549</link>
      <description>&lt;P&gt;If you are trying to view in SQL Analytics Endpoint, there is a delay. In that interface, in the upper right, there is a button to Refresh&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&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>Fri, 26 Sep 2025 14:39:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836580#M12549</guid>
      <dc:creator>Thomaslleblanc</dc:creator>
      <dc:date>2025-09-26T14:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836592#M12550</link>
      <description>&lt;P&gt;Hey Thomas,&lt;BR /&gt;&lt;BR /&gt;i have a data flow after this notebook to copy this gold data into an individual's lakehouse, That dataflow fails with this error&lt;BR /&gt;&lt;SPAN&gt;DeltaDataFileMissingAddFileAction,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=No matching AddFile action for data file&lt;/SPAN&gt;&lt;BR /&gt;thats how i notice this blank table. then i go back to default lakehouse view and SQL end point. But both will be blank even if i refresh the view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 14:51:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4836592#M12550</guid>
      <dc:creator>joyeldavis007</dc:creator>
      <dc:date>2025-09-26T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4843438#M12737</link>
      <description>&lt;P&gt;&lt;SPAN&gt;If your issue still persists, please consider raising a support ticket for further assistance.&lt;BR /&gt;&lt;SPAN&gt;To raise a support ticket for Fabric and Power BI, kindly follow the steps outlined in the following guide:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank" rel="noreferrer noopener" aria-label="Link How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn"&gt;&lt;SPAN&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2025 13:38:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4843438#M12737</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-10-06T13:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4845418#M12783</link>
      <description>&lt;P&gt;We are following up once again regarding your query. Could you please confirm if the issue has been resolved through the support ticket with Microsoft?&lt;BR /&gt;If the issue has been resolved, we kindly request you to share the resolution or key insights here to help others in the community. If we don’t hear back, we’ll go ahead and close this thread.&lt;BR /&gt;Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum and create a new thread. We’ll be happy to help.&lt;BR /&gt;&lt;BR /&gt;Thank you for your understanding and participation.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 10:55:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4845418#M12783</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-10-08T10:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4845822#M12794</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="845241" data-lia-user-login="v-prasare" class="lia-mention lia-mention-user"&gt;v-prasare&lt;/a&gt;&amp;nbsp; I have raised a support ticket parrallely as i posted on this thread. However,&amp;nbsp; its still not resolved and support team is working on it. I can update the thread once we get a resolution.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 17:01:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4845822#M12794</guid>
      <dc:creator>joyeldavis007</dc:creator>
      <dc:date>2025-10-08T17:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Table visible in lakehouse but no data visible</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4848722#M12879</link>
      <description>&lt;P&gt;sure, thanks for the update.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Oct 2025 09:00:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Table-visible-in-lakehouse-but-no-data-visible/m-p/4848722#M12879</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-10-13T09:00:07Z</dc:date>
    </item>
  </channel>
</rss>

