Given bad mysqldump that causes error on import:

namtar backups # mysql -p < 2010-12-01.sql
Enter password: 
ERROR 1062 (23000) at line 8020: Duplicate entry 'l�he?' for key 'wrd_txt'

Is there an easy way to tell import to just skip given row and continue?

(Yes, I know I can manually edit the file or parse output, but it's not very convinient)

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

If you can make the dump again you could add --insert-ignore to the commandline when dumping.

Or you can try using the mysqlimport command with --force,which will continue even if it encounters MySQL Errors.

link|improve this answer
I cannot create export again...and how do I use mysqlimport agains output from mysqldump --all-databases ? – Almad Oct 1 '11 at 19:23
1  
I just tried using --force with mysql and it causes the insertion to stop when the error occurs. mysqlimport doesn't work with an --all-databases dump, so that's out of the question as well. The easiest way would be to edit the file, not to remove the offending line(s) which could be tedious, but to turn the "INSERT" commands into "INSERT IGNORE" commands. A simple find/replace should suffice. I realise it's not an ideal solution, but it's better than having to dig through the file replacing offending inserts manually when you find out about them. – jmlsteele Oct 1 '11 at 19:57
feedback

mysql -f -p < 2010-12-01.sql

the -f (force) being the operative option here, worked for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.