If you're using only MyISAM tables, then a good way to do a backup is to use BACKUP TABLE: [tt]
LOCK TABLE tbl1,tbl2,tbl3;
BACKUP TABLE tbl1,tbl2,tbl3 TO 'k:\tuesday';
UNLOCK TABLES;
[/tt]
This operation simply copies each table's data and format files to the named directory, so it has to be the fastest and most compact backup system possible.
you could download the mysql administrator from mysql web site. This has a backup facility, using a nice GUI interface. I have used it in a test enviroment and it worked just fine. Also you can set up daily or a weekly schedules as well. I'm new to mysql and found this to be a most useful tool still learning.
Hope this has been some use to you.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.