<?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 Loading data from Lakehouse to Snowflake using Copy data in Data Pipeline in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4280650#M5145</link>
    <description>&lt;P&gt;I have source Lakehouse table and target snowflake, using datalake copy data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;trying to preview the source lakehouse data, but getting this error:&lt;/P&gt;&lt;P&gt;The data type is not supported in Delta format. Reason: Cannot find supported logical type for column name Extended_Status, delta type void&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am writing spark dataframe into lakehouse table. few columns contain nested JSON format.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Nov 2024 22:49:13 GMT</pubDate>
    <dc:creator>shivaazure</dc:creator>
    <dc:date>2024-11-12T22:49:13Z</dc:date>
    <item>
      <title>Loading data from Lakehouse to Snowflake using Copy data in Data Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4280650#M5145</link>
      <description>&lt;P&gt;I have source Lakehouse table and target snowflake, using datalake copy data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;trying to preview the source lakehouse data, but getting this error:&lt;/P&gt;&lt;P&gt;The data type is not supported in Delta format. Reason: Cannot find supported logical type for column name Extended_Status, delta type void&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am writing spark dataframe into lakehouse table. few columns contain nested JSON format.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 22:49:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4280650#M5145</guid>
      <dc:creator>shivaazure</dc:creator>
      <dc:date>2024-11-12T22:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Loading data from Lakehouse to Snowflake using Copy data in Data Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4281158#M5150</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/844994"&gt;@shivaazure&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error message indicates that void type is not supported. I have the following suggestions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before writing to the Delta table, you can convert the data type of the column in the notebook:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;from pyspark.sql.functions import col
from pyspark.sql.types import StringType

#Convert the column to string type
df = df.withColumn("Extended_Status", col("Extended_Status").cast(StringType()))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then use the following code to create the Delta table:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;df.write.mode("overwrite").format("delta").saveAsTable("your_table_name")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try again to see if the error still occurs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 06:52:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4281158#M5150</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-13T06:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Loading data from Lakehouse to Snowflake using Copy data in Data Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4290303#M5248</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/844994"&gt;@shivaazure&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is my follow-up just to ask if the problem has been solved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your cooperation!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 06:15:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4290303#M5248</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-19T06:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Loading data from Lakehouse to Snowflake using Copy data in Data Pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4305833#M5399</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/844994"&gt;@shivaazure&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is my follow-up just to ask if the problem has been solved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your cooperation!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 09:02:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-data-from-Lakehouse-to-Snowflake-using-Copy-data-in-Data/m-p/4305833#M5399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-28T09:02:39Z</dc:date>
    </item>
  </channel>
</rss>

