<?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 Tutorial issues preparing and transforming data in the lakehouse in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4857955#M13089</link>
    <description>&lt;P&gt;try database.schema.table names like wwilakehouse.dbo.fact_sale&lt;/P&gt;
&lt;P&gt;or reading Tables\fact_sales&lt;/P&gt;</description>
    <pubDate>Fri, 24 Oct 2025 15:12:56 GMT</pubDate>
    <dc:creator>Thomaslleblanc</dc:creator>
    <dc:date>2025-10-24T15:12:56Z</dc:date>
    <item>
      <title>Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4857726#M13084</link>
      <description>&lt;P&gt;Hey Everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am following the End-to-end Lake House Tutorial under&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/tutorial-lakehouse-data-preparation" target="_blank" rel="noopener nofollow noreferrer"&gt;Lakehouse tutorial - Prepare and transform lakehouse data - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When running the second Notebook `02 - Data Transformation - Business Aggregates.ipynb` (step 20 from the &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/tutorial-lakehouse-data-preparation" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/tutorial-lakehouse-data-preparation&lt;/A&gt;) :&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;df_fact_sale = spark.read.table("wwilakehouse.fact_sale") 
df_dimension_date = spark.read.table("wwilakehouse.dimension_date")
df_dimension_city = spark.read.table("wwilakehouse.dimension_city")&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;...I get an&amp;nbsp;AnalysisException:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;---------------------------------------------------------------------------
AnalysisException                         Traceback (most recent call last)
Cell In[11], line 1
----&amp;gt; 1 df_fact_sale = spark.read.table("wwilakehouse.fact_sale") 
      2 df_dimension_date = spark.read.table("wwilakehouse.dimension_date")
      3 df_dimension_city = spark.read.table("wwilakehouse.dimension_city")

File /opt/spark/python/lib/pyspark.zip/pyspark/sql/readwriter.py:484, in DataFrameReader.table(self, tableName)
    450 def table(self, tableName: str) -&amp;gt; "DataFrame":
    451     """Returns the specified table as a :class:`DataFrame`.
    452 
    453     .. versionadded:: 1.4.0
   (...)
    482     &amp;gt;&amp;gt;&amp;gt; _ = spark.sql("DROP TABLE tblA")
    483     """
--&amp;gt; 484     return self._df(self._jreader.table(tableName))

File ~/cluster-env/trident_env/lib/python3.11/site-packages/py4j/java_gateway.py:1322, in JavaMember.__call__(self, *args)
   1316 command = proto.CALL_COMMAND_NAME +\
   1317     self.command_header +\
   1318     args_command +\
   1319     proto.END_COMMAND_PART
   1321 answer = self.gateway_client.send_command(command)
-&amp;gt; 1322 return_value = get_return_value(
   1323     answer, self.gateway_client, self.target_id, self.name)
   1325 for temp_arg in temp_args:
   1326     if hasattr(temp_arg, "_detach"):

File /opt/spark/python/lib/pyspark.zip/pyspark/errors/exceptions/captured.py:185, in capture_sql_exception.&amp;lt;locals&amp;gt;.deco(*a, **kw)
    181 converted = convert_exception(e.java_exception)
    182 if not isinstance(converted, UnknownException):
    183     # Hide where the exception came from that shows a non-Pythonic
    184     # JVM exception message.
--&amp;gt; 185     raise converted from None
    186 else:
    187     raise

AnalysisException: [TABLE_OR_VIEW_NOT_FOUND] The table or view `wwilakehouse`.`fact_sale` cannot be found. Verify the spelling and correctness of the schema and catalog.
If you did not qualify the name with a schema, verify the current_schema() output, or qualify the name with the correct schema and catalog.
To tolerate the error on drop use DROP VIEW IF EXISTS or DROP TABLE IF EXISTS.;
'UnresolvedRelation [wwilakehouse, fact_sale], [], false&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-10-24 at 13.26.01.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1305314i6610F716221F323F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-10-24 at 13.26.01.png" alt="Screenshot 2025-10-24 at 13.26.01.png" /&gt;&lt;/span&gt;&lt;BR /&gt;How can I solve this issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 11:28:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4857726#M13084</guid>
      <dc:creator>mlukicic</dc:creator>
      <dc:date>2025-10-24T11:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4857955#M13089</link>
      <description>&lt;P&gt;try database.schema.table names like wwilakehouse.dbo.fact_sale&lt;/P&gt;
&lt;P&gt;or reading Tables\fact_sales&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 15:12:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4857955#M13089</guid>
      <dc:creator>Thomaslleblanc</dc:creator>
      <dc:date>2025-10-24T15:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4858001#M13092</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Thank you for your suggestion.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;wwilakehouse.dbo.fact_sale &lt;/STRONG&gt;raises the same &lt;STRONG&gt;AnalysisException: [TABLE_OR_VIEW_NOT_FOUND]&lt;/STRONG&gt;&amp;nbsp;Exception.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can read the parquet file with:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;df = spark.read.format("parquet").load('Files/wwi-raw-data/full/fact_sale')&lt;/LI-CODE&gt;&lt;P&gt;However, I would like to read the Delta files (like tutorial does).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed two things. First, in Explorer, under the &lt;STRONG&gt;wwilakehouse / Tables&lt;/STRONG&gt;, I have &lt;STRONG&gt;Undefined&lt;/STRONG&gt;&amp;nbsp;folders under each dimension_ table.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-10-24 at 17.48.27.png" style="width: 199px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1305379iDCAACE1BB054D827/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-10-24 at 17.48.27.png" alt="Screenshot 2025-10-24 at 17.48.27.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And second, running:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;spark.sql("SELECT current_catalog()").show(truncate=False)
spark.sql("SELECT current_database()").show(truncate=False)&lt;/LI-CODE&gt;&lt;P&gt;will return:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;+-----------------+
|current_catalog()|
+-----------------+
|spark_catalog |
+-----------------+

+----------------------------------------------------------------------------------------+
|current_database() |
+----------------------------------------------------------------------------------------+
|chimcobldhq2ahj1c9p6iop0dhgmmpb8dtqn6p90ahqn8rrid5gmo81d410k29bnetkmoobbclk6utbjckim8ojf|
+----------------------------------------------------------------------------------------+&lt;/LI-CODE&gt;&lt;P&gt;Maybe I am interpreting it wrong, but it seems to me like spark is not attached to the lakehouse (even the Notebook is).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Marko&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 15:49:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4858001#M13092</guid>
      <dc:creator>mlukicic</dc:creator>
      <dc:date>2025-10-24T15:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4860274#M13125</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1378440"&gt;@mlukicic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;It looks like your Spark session isn’t properly connected to the Lakehouse, which is why the table reference fails. The output showing spark_catalog and a long default database name means Spark is running in a default workspace context, not inside the Lakehouse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this suggestion points as below :&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Go to the notebook toolbar.&lt;/LI&gt;
&lt;LI&gt;Look for the “Lakehouse” icon or “Attached items.”&lt;/LI&gt;
&lt;LI&gt;Click “Attach to” and select your Lakehouse :&amp;nbsp; wwilakehouse.&lt;/LI&gt;
&lt;LI&gt;Wait until it shows up under “Attached items” in the Explorer panel on the left.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Once attached, re-run your queries and it should be able to access the Lakehouse tables correctly.&lt;BR /&gt;&lt;BR /&gt;Hope this helps !!&lt;BR /&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 08:50:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4860274#M13125</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-10-28T08:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4860588#M13135</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/819528"&gt;@v-aatheeque&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Can you help me locate the "Lakehouse" icon or "Attached items"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-10-28 at 13.34.54.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1305952iB6AA2D215063785B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-10-28 at 13.34.54.png" alt="Screenshot 2025-10-28 at 13.34.54.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I missing something?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 12:38:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4860588#M13135</guid>
      <dc:creator>mlukicic</dc:creator>
      <dc:date>2025-10-28T12:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4861480#M13155</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1378440"&gt;@mlukicic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Based on the screenshot you shared, I followed the steps from the provided document (&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/tutorial-lakehouse-data-preparation" target="_blank"&gt;Lakehouse tutorial - Prepare and transform lakehouse data - Microsoft Fabric | Microsoft Learn&lt;/A&gt;) and was able to get the expected output as shown below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vaatheeque_0-1761732020832.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1306187i1BEFB1764903EBD5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vaatheeque_0-1761732020832.png" alt="vaatheeque_0-1761732020832.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Can you once cross check this below steps :&lt;BR /&gt;&lt;BR /&gt;1. Refresh your Lakehouse view to make sure the tables (fact_sale, dimension_date, and dimension_city) are actually there.&lt;/P&gt;
&lt;P&gt;2. Check that your Spark code is using the right schema.&lt;/P&gt;
&lt;P&gt;3. Make sure your notebook is connected to the right Lakehouse.&lt;/P&gt;
&lt;P&gt;4. Double-check the table names, even a small spelling mistake can cause this error.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;To attach the lakehouse as per the newFabric UI :&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In the Explorer panel, click + Add data items.&lt;/LI&gt;
&lt;LI&gt;Select New Lakehouse/Existing data sources.&lt;/LI&gt;
&lt;LI&gt;Choose your Lakehouse (e.g., wwilakehouse) and click Add.&lt;/LI&gt;
&lt;LI&gt;Ensure it appears under Items with a database icon.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Hope this helps !!&lt;BR /&gt;Thank You.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 10:09:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4861480#M13155</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-10-29T10:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4863446#M13187</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1378440"&gt;@mlukicic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Have you had a chance to look through the responses shared earlier? If anything is still unclear, we’ll be happy to provide additional support.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 13:13:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4863446#M13187</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-10-31T13:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4863680#M13191</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/819528"&gt;@v-aatheeque&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help and time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I couldn’t get this to work. I deleted the entire Lakehouse and started over, following the tutorial step by step. However, I noticed some differences between my UI and the tutorial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I opened the Notebooks from the tutorial, I saw that some resources were attached in the Explorer, all marked with red icons and a white cross, indicating an error. This happened on both Notebooks. I deleted all these resources, added the wwilakehouse Lakehouse, and set it as the default resource.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first Notebook ran without any issues. However, in the second Notebook, the files were not auto-registered as Delta tables as described in the tutorial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless you have any suggestions on where to look next, I’m closing this and moving forward. From my perspective as a machine learning engineer, Fabric seems workable, but it still needs improvement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 16:22:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4863680#M13191</guid>
      <dc:creator>mlukicic</dc:creator>
      <dc:date>2025-10-31T16:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4865952#M13236</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1378440"&gt;@mlukicic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for the detailed update ,It’s great to see the thorough steps you’ve taken to validate and troubleshoot the tutorial process.&lt;/P&gt;
&lt;P&gt;The differences you noticed in the UI and the auto-registration behavior are valuable observations. Since Fabric is still evolving rapidly, your feedback could help improve future experiences.&lt;/P&gt;
&lt;P&gt;If you’d like, you can share this suggestion directly through the Microsoft Fabric Ideas portal (&lt;A title="https://ideas.fabric.microsoft.com/" href="https://ideas.fabric.microsoft.com/" target="_blank" rel="noreferrer noopener"&gt;https://ideas.fabric.microsoft.com/&lt;/A&gt;). The product team actively reviews user inputs there for feature improvements.&lt;/P&gt;
&lt;P&gt;Appreciate your time exploring this and sharing your insights!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 11:24:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4865952#M13236</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-11-04T11:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Lakehouse Tutorial issues preparing and transforming data in the lakehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4865981#M13238</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/819528"&gt;@v-aatheeque&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks. And thank you for the link. In fact, I would like to share a few suggestions, as I believe the strategy is great and could become an excellent tool for machine learning engineers working with graphs as well.&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 12:02:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Lakehouse-Tutorial-issues-preparing-and-transforming-data-in-the/m-p/4865981#M13238</guid>
      <dc:creator>mlukicic</dc:creator>
      <dc:date>2025-11-04T12:02:09Z</dc:date>
    </item>
  </channel>
</rss>

