When using scheduled backups, if a table name in the database ends with a number, the backup will crash.
I have a cron job that fires a scheduled backup by calling a .bat file that contains:
“C:Program FilesSQLyogSJA.exe” “D:db_backupsLTIS_OH_AutoBackupltis_oh_backup.xml” -l”C:UsersAdministratorAppDataRoamingSQLyogsja.log” -s”C:UsersAdministratorAppDataRoamingSQLyogsjasession.xml”
This has been working flawlessly for years.
Recently I added a table to this database where the table name was: sys_control_65
This action caused the scheduled backups job to crash when it got to the point where it was backing up that table.
Renaming the table to sys_control_65a resolved the issue and the backup job completed.