Mysql Dump
How to dumb all databases to seperate files via cron job.
i tried to use following script. but its only taking some databases
for DB in $(mysql -e 'show databases' -s --skip-column-names); do
mysqldump $DB > "$DB.sql";
done
-
Check out AutoMysqlBackup. Or use the cPanel backup system which does dump the databases as part of its backup routine. 0 -
Check out AutoMysqlBackup. Or use the cPanel backup system which does dump the databases as part of its backup routine.
only database backup required. so is there any tools available for this.??0 -
" AutoMySQLBackup with a basic configuration will create Daily, Weekly and Monthly backups of one or more of your MySQL databases from one or more of your MySQL servers. " 0
Please sign in to leave a comment.
Comments
3 comments