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.
we are not staging anything here, fabric automatically decides to use staging when loading data from synapse to warehouse, where can we specify it to use double please explain?
In your source query cast to double and try
SELECT CAST(my_float_column AS double) AS my_float_column
- AnmolGan811 year ago
Advocate II
double does not work for us we get incorrect sytanx error when passing it.
- AntoineW1 year ago
Super User
Hello,
try this syntax : TRY_CAST(column_name AS DECIMAL(18,2) AS column_name