Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join now60 Days of Data Days! Live and on-demand sessions, challenges, study groups and more! And it's all FREE!. Join now. Learn more
I have source Lakehouse table and target snowflake, using datalake copy data
trying to preview the source lakehouse data, but getting this error:
The data type is not supported in Delta format. Reason: Cannot find supported logical type for column name Extended_Status, delta type void
I am writing spark dataframe into lakehouse table. few columns contain nested JSON format.
Hi @shivaazure ,
Is my follow-up just to ask if the problem has been solved?
If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?
Thank you very much for your cooperation!
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @shivaazure ,
Is my follow-up just to ask if the problem has been solved?
If so, can you accept the correct answer as a solution or share your solution to help other members find it faster?
Thank you very much for your cooperation!
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Hi @shivaazure ,
The error message indicates that void type is not supported. I have the following suggestions:
Before writing to the Delta table, you can convert the data type of the column in the notebook:
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()))
Then use the following code to create the Delta table:
df.write.mode("overwrite").format("delta").saveAsTable("your_table_name")
Try again to see if the error still occurs.
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 5 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 19 | |
| 18 | |
| 14 | |
| 13 | |
| 12 |