MySQL Forums
Forum List  »  Backup

Re: Where can I find mysqldump program
Posted by: george
Date: November 16, 2005 06:24PM

you can use windows command line.

1. go to the bin directory. (i.e. C:\program files\mysql\bin)
2. run the mysqldump.exe with the username and password.

mysqldump --user [username goes here] --password=[password goes here] [database name goes here] > [outputfile goes here]

for example:

mysqldump --user julio --password=juliospassword juliosdatabase > DatabaseBackup.sql


you can view other options by typing:

mysqldump --help

hth

Options: ReplyQuote


Subject
Views
Written By
Posted
8592
November 16, 2005 03:54PM
3478
November 16, 2005 05:52PM
Re: Where can I find mysqldump program
4021
November 16, 2005 06:24PM
2864
November 21, 2005 01:34AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.