sqlsitemapprovider - Overwrite a Backup -


I need to set a job to make backups every day. I also need to overwrite the existing backup. Someone please help me

Thanks,

Take a look at mysqldump .

  mysqldump db_name tbl_name & gt; Backupfile.sql  

will dump a DB / table and backup file Will overwrite SQL.

Use rsync or

to copy it to another host if necessary

Comments