Forum Discussion
JayJay11
2 years agoResolver II
Error when writing dataframe to delta table
Hello all, second time trying to post this, as the first try was marked as spam (???). I try to write a dataframe back to a delta table and get an error. This is the code I use to create the ...
- 2 years ago
The solution was to change the spark session configuration via the workspace settings:
What it actually does / means... I don't know.
Anonymous
2 years agoNot applicable
Hi JayJay11 ,
Thanks for using Fabric Community.
As part of testing, can you try to create a new table.
dfCustomerJoined.write.mode("overwrite").format("delta").option("overwriteSchema", "true").save("Tables/factCustomerBaseJoined")
Let me know the output of it.
- JayJay112 years agoResolver II
The solution was to change the spark session configuration via the workspace settings:
What it actually does / means... I don't know.
- Anonymous2 years agoNot applicable
Glad to know that you were able to resolve your issue. Please continue using Fabric Community on your further queries.
- Naveen-0042 years agoFrequent Visitor
I got the same error even after using the mentioned spark properties.