tags:

views:

27

answers:

1

What is the best method for automating the task of backing up a MySQL DB on a Windows 2003 Server?

A: 

You could create a scheduled task that does:

mysqldump --user=blah --password=blah databasename > c:\somebackupfile.sql

Then you can have some normal backup software or process to backup that file.

Tom Haigh