Medium severitydata source
Power BI Refresh Error:
DelimitedTextColumnNameNotAllowNull
What does this error mean?
An ADF copy activity encountered a null or empty column name in the CSV header row. ADF requires all columns to have non-empty names when the first row is the header.
Common causes
- 1The CSV file's header row contains empty columns (two consecutive delimiters with nothing between them)
- 2Trailing delimiters on the header row create phantom empty columns
- 3The header row contains only whitespace for one or more column names
How to fix it
- 1Open the CSV file and inspect the header row for empty or whitespace-only column names.
- 2Remove trailing delimiters at the end of the header row.
- 3Assign meaningful names to all header columns, or use the "First row as header" option with a schema that maps columns by position instead of name.
- 4Use a data flow transformation to filter out null column names after reading the file.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/connector-troubleshoot-delimited-text