I use the mysqldump to make a backup of my database. My database was destroyed by an accident and now I want to restore it. But the SQL file is double encoded by bug#28969. http://bugs.mysql.com/bug.php?id=28969 Is there any solution for my data to go back? I only have the SQL file made by mysqldump. Thanks.


I got my data back. Thanks everyone.

By this way,

1.import the messy data

2.use sqldump as 'mysqldump -h "$DB_HOST -u "$DB_USER" -p"$DB_PASSWORD" --opt --quote-names --skip-set-charset --default-character-set=latin1 "$DB_NAME" > /tmp/temp.sql'

Reference

http://pastebin.com/iSwVPk1w

link|improve this question
What exactly is meant by "double utf-8"? The 2 bytes repeated or something else? A hex example of some of the 4 byte sequences would be very helpful. I'm guessing you may just need to write a quick script to scan the dump file and correct each UTF-8 sequence it finds. – Erik Nedwidek Jul 8 '11 at 14:57
The bug report indicates this may have been an issue with an older version of MySQL. Are you on a recent version? – AJ. Jul 8 '11 at 14:59
I'm sure you've also learned a best practice here. Always check your backups against a "burn system" so you know they are good before you need them for disaster recovery. Don't feel bad we've all been there. :D – Erik Nedwidek Jul 8 '11 at 14:59
@AJ, that is definitely something he (or his service provider) will need to do, but he's currently in a disaster recovery situation. He needs the currently corrupted data back. If the database was still on the server, he'd be able to update and create a new backup and be good to go. – Erik Nedwidek Jul 8 '11 at 15:03
Thanks everyone here. I got my data back. By this way, 1.import the messy data 2.use sqldump as 'mysqldump -h "$DB_HOST -u "$DB_USER" -p"$DB_PASSWORD" --opt --quote-names --skip-set-charset --default-character-set=latin1 "$DB_NAME" > /tmp/temp.sql' Reference pastebin.com/iSwVPk1w – shk3 Jul 8 '11 at 15:12
show 1 more comment
feedback

2 Answers

If it's just doubling the UTF-8 bytes or prepending something, I'd suggest putting together a quick sed/awk command to match and correct them.

http://www.osnews.com/story/21004/Awk_and_Sed_One-Liners_Explained

If you're not comfortable with this, any scripting language with regex support could be used to easily do the same thing, though it might take a few more minutes.

link|improve this answer
I am not sure if your answer can help. I have tried decode by 'iconv', but it does not give my data back. Luckily, I just find the resolution. Thanks for your help. – shk3 Jul 8 '11 at 15:14
feedback
up vote 0 down vote accepted

I got my data back. Thanks everyone.

By this way,

1.import the messy data

2.use sqldump as 'mysqldump -h "$DB_HOST -u "$DB_USER" -p"$DB_PASSWORD" --opt --quote-names --skip-set-charset --default-character-set=latin1 "$DB_NAME" > /tmp/temp.sql'

Reference

http://pastebin.com/iSwVPk1w

mysql utf-8 mysqldump

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.