Tag Archives: MySQL

Backing up my MySql data

Please excuse this rather uninteresting blog post, I just wanted somewhere to store a copy of this bash script which backs up my MySql data. #!/bin/bash # *=================================================================* # * Filename : backupsql.sh * # * Purpose : To backup … Continue reading

Rate This

Posted in Technical | Tagged , , | 1 Comment

Backing up my MySQL data

This may not be of use or interest to anyone else, but at least I’ll remember where I stored this command for my own future use. mysqldump -u root -p –events –ignore-table=mysql.event –all-databases > all_databases07.sql So what does it do: … Continue reading

Rate This

Posted in Technical | Tagged , , | 2 Comments