vote up 6 vote down star
3

I was wondering what is the best free MySQL backup solution on a windows server? I am interested in backing up the data only.

Constraints

  • free solution
  • backup should be done to somewhere outside the server
  • windows only
  • mysql only
  • if you provide a suggestion with batch files & co. please add source code.

thx.

flag

What does "List item" mean? Also, how much setup work are you willing to do? – Ambush Commander Oct 13 '08 at 20:47
list item was a "bug" :) setup should be as less as possible. but it depends on the solution though – Michal Oct 13 '08 at 20:57

5 Answers

vote up 3 vote down check

You can setup a small batch file to take the output of mysqldump and upload it on remote FTP server (or simply copy it on a UNC path). It's free, and easy to implement.

Edit: If by "List item" you mean that you want plain text files (not SQL statements), you can also use mysqldump to achieve that, using the --tab=path option. This will create a tab seperated list of your values in each table.

Here is an example of a batch script to copy a file via UNC:

@echo off

REM "Create a time signature for the backup"
SET backupTime="%date:~0,2%-%date:~3,2%-%date:~6,6%_%time:~0,2%-%time:~3,2%"

REM "Mount \\REMOTESERVER\MySQLBackup to drive X:"
net use X: \\REMOTESERVER\MySQLBackup

REM "Dump the database to the file."
mysqldump --user=backupuser --password=***** my_db > X:\%backupTime%.sql

REM "Unmount X:"
net use X: /DELETE
link|flag
i was thinking of that but i need details .. code ;) – Michal Oct 13 '08 at 20:59
I just added a small batch file as an example. – Andrew Moore Oct 13 '08 at 21:01
vote up 1 vote down

This works well: http://dev.mysql.com/downloads/gui-tools/5.0.html

The administrator tool in that package has a very easy to use backup utility.

link|flag
vote up 0 vote down

If you're already using PHP, you can use phpMyAdmin and it'll dump your entire database into a file or display it on screen for copying and pasting. Just click the database you want and then click the Export link and it'll bring up the easy to use interface. Thats how I've always done it. phpMyAdmin isn't terribly hard to configure.

link|flag
vote up 0 vote down

Here is a nice MySQL Backup solution for windows, completely free. This one has a nice feature which allows end user to generate batch file to automate MySQL backup process.

MySQL backup solution for Microsoft Windows

link|flag
vote up 0 vote down

If you need something with a schedule try zmanda

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.