You can easily setup a cron job to generate mysql database backup in your hosting account.
Below given command is an example to generate mysql database backup daily at midnight , you need to set the below given command in cPanel >> cronjobs :
You can change the time as per your requirements .
Cheers
Below given command is an example to generate mysql database backup daily at midnight , you need to set the below given command in cPanel >> cronjobs :
Code:
0 0 * * * /usr/bin/mysqldump -u dbusername dbname -p password > /home/uesrname/dbbackup.sql
Cheers

Comment