49 chars · 3 lines
Needs attention
49 chars · 3 lines
Needs attention
CSV missing-delimiter troubleshooting
The Ada row contains admintrue as one field because the comma between role and active is missing. VetaTool sees only two columns in that record while the header defines three. This tool is free to use. No account or payment is required.
Last updated
A parser cannot infer where one unquoted value should end and the next should begin. Without the delimiter, adjacent text becomes one cell and the record becomes shorter than the table schema.
Restore the missing comma between role and active.
name,role,active
Ada,admintrue
Linus,editor,falsename,role,active
Ada,admin,true
Linus,editor,falseCommon questions
Two intended cells are read as one field, so the record has fewer columns than expected.
No. Only the source schema tells you where the missing boundary belongs.
Yes. An unquoted multiline value can split one logical record and also produce short rows.
Debugging a specific CSV issue? Browse CSV troubleshooting.