Forum Discussion
Synapse Datawarehouse to Fabric Warehouse Data Load
- 11 months ago
Well we have tested this scenerio by creating tabular mapping and directly loading parquet file from data lake into the lakehouse using ADF and then moving that data into warehouse through stored procedure works; without any staging and it works, somehow staging in onelake does not allow us to move the data into warehouse.
This will be an actual solution for the problemetic data types, or someone who is directly looking to copy data to test fabric warehouse/lakehouse performance and test one time migration.
yes try to change the target to decimal(22,8).
or
when you are writing to the stage cast datatype to double.
SELECT CAST(my_float_column AS double) AS my_float_column
You can try either of the option.
DECIMAL(22,8) does not work for us in fabric we have to keep float only, are there any alternatives?