Forum Discussion
Dataflow Gen2 Mashup Error: Loading Data into Lakehouse
Can you go back to the Data Destination settings and show a screenshot of the column and data types mappings that show in there for the table?
- Janica1232 years agoHelper I
Thanks for your reply!
Here a screenshot of the column and data types mappings for the tableRemark: The columns in my source originally have spaces. In the Data Destination settings Fabric automatically suggest me to fix this, since they are not allowed in destination. Thats reason for the information on the top
- miguel2 years agoCommunity Admin
go to the workspace list view, find the dataflow, click the 3 dots and get the ".json" file for the dataflow. In there you can check the Mashup script and see if there's any reference made to a datetime - that could be causing the issue.
- v-cboorla-msft2 years agoMicrosoft Employee
Hi Janica123
We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. In case if you have any resolution please do share that same with the community as it can be helpful to others.
Otherwise, will respond back with the more details and we will try to help.
Thanks.
- Element1152 years agoMemorable Member
This is strange.. I remember having the same issue once and I fixed it by opening the Advanced Editor and adding {"DATE", type date} to the params list of function Table.TransformColumnTypes() like so:
#"Changed column type" = Table.TransformColumnTypes( dbo_RWS_15M, { {"DATE", type date}, ...