I have a hosted site at GoDaddy running MySQL. Does anyone know how to automate backing up this DB? Are there any free scripts out there that can backup DBs? I have servers to copy the file to, I just don't know how to do actual automation. thx
I use this one: http://sourceforge.net/projects/automysqlbackup/ ... and it works pretty well. But, if you just google for "mysql backup script" you'll find hundreds of them. They all (for the most part) use the mysqldump utility that comes with your MySQL installation.
I was wondering why mysql community isn't interested in xcopy backup. One of the critical feature is overlooked. For MS-SQL 2005 db, you can just copy the db file like ordinary file; you don't need to lock and flush the tables and dump them to file. Anyway, for small mysql databases, mysqldump will work just fine. When db gets big in GBs, you'll need to replicate the db in another server. You'll then get real-time backup.