mysqldump is a decent way to backup your FogBugz (or any other) MySQL database:
mysqldump --opt --user=user --password=password fogbugz | gzip --best > /BackupPath/fogbugz.sql.gz
The gzip bit at the end is optional but it keeps your backup file smaller.
You can also checkout How do I back up my FogBugz installation?