By default mysqldump
make a dump with only one INSERT statement per table. This is efficient but annoying as hell when you need to debug a failed import.
In that case i recommend you to redump the problematic database with the option --extended-insert=FALSE
to get a dump with one INSERT statement for each data row.