"Mysql Workbench is a query client and tool for modeling and very good at it - the goal is not to perform server tasks - which is server work. You can run manual backups using Workbench, but I’m guessing that’s not your long-term goal.
There are many ways you can perform backups. Take a look here for 10 of them. Some of the solutions are OS dependent basically, you have more options if you are on Linux /*Nix than on Windows (which is yours? ). Also, it depends on whether your tables are Innodb or Myisam (I hope it’s Innodb!).
Two other (Open Source) backup solutions not mentioned in the post above are from Percona Xtrabackup which may be cron’d or Zmanda’s (which was mentioned in High Performance Mysql book by Schwartz et al.). Another solution would be Mydumper - again a tool supported Percone (except this also handles Myisam tables).
If you’re familiar with * Nix and file systems, then maybe an LVM solution might be good for you? Try here .
I advise you to study the available solutions and do some tests and see which one best meets your needs."
*Sometimes it is necessary to seek a little more! Hug.
Original text
I use Windows.
– DevAgil
then you can try one of these programs, or perform manually
Server/Export
orServer/Back Up e Recovery
and create a configuration onmy.cnf
– Hebert Lima