Answer by Dimas for MySQL backup breakes a table every time
Solved! Finally I tried to rename the table and now it stops getting corrupted every day! It seems that MySQL have some internal registry indicating a problem with the previous table name.
View ArticleAnswer by Andrew Brennan for MySQL backup breakes a table every time
This might seem too obvious but:rm -rf /var/backup/mysql/ *Space between / and * means there's two seperate deletes. So you're deleting the contents of /var/back/mysql/ and the contents of *. i.e....
View ArticleAnswer by tdaget for MySQL backup breakes a table every time
We need an important information : table type ... (MyIsam or InnoDb)Maybe your table is corrupted and you need to do a check over your table (and your database).It may be occur by a corrupted datafile...
View ArticleMySQL backup breakes a table every time
I've a MySQL Server 5.1.58-1ubuntu1 installed on an Ubuntu 12.04 LTS.Every night we do a backup of all the databases with this script:rm -rf /var/backup/mysql/ *for i in $(echo 'SHOW DATABASES;' |...
View Article