I have a MySQL that that primarily has innodb tables. I did back up using mysqldump, phpmyadmin, and by saving the files in /var/lib/mysql.
When I try to restore them now, all the tables are restored except for a table that contains "URLs". The information in that table is not complete. I tried restoring the three types of backup and it's the same. (The URLs are stored using UTF8)
Any idea what did that happen? Is there a chance that mysqldump doesn't work always as expected? Do you think that there is a way for me to restore my "URL" data?
cat dump.sql | mysql -u USER -pPASSWORD -h HOST -d DATABASE
– James Andres