Medium severitydata source
Power BI Refresh Error:
ParquetMissedDecimalPrecisionScale
What does this error mean?
A DECIMAL column in the Parquet file is missing required precision and scale metadata. ADF requires explicit precision and scale to interpret decimal columns.
Common causes
- 1The Parquet writer that created the file omitted precision and scale annotations on decimal columns
- 2The Parquet file was generated by a tool that writes raw binary decimals without annotation
How to fix it
- 1Specify the expected precision and scale for the decimal column in the ADF Parquet dataset schema definition.
- 2If you control the Parquet writer, update it to include precision and scale annotations on decimal columns.
- 3Use a data flow transformation to cast the raw decimal value to the correct precision and scale after reading.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-parquet