Medium severitydata source
Power BI Refresh Error:
UserErrorInvalidDataValue
What does this error mean?
ADF encountered a data value in the source that cannot be converted to the target column type. The source data contains values incompatible with the defined schema.
Common causes
- 1A source column contains null values in a non-nullable target column
- 2A string value cannot be parsed as the target numeric or date type
- 3Type mismatch between source data and the defined schema in the ADF dataset
How to fix it
- 1Enable fault tolerance on the copy activity to skip rows with invalid values and log them to storage.
- 2Review the source data for values that do not conform to the expected data type.
- 3Update the dataset schema to use a more permissive type (such as string) for the affected column.
- 4Use a data flow transformation to cleanse or cast the problematic values before writing to the sink.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/copy-activity-fault-tolerance