Tom Flanagan wrote:
> 
> Does anyone know how to convert a FreeBSD UNIX MYSql database to Windows
> NT/2000 MYSql Database?
> 
> Thanks,
> 
> Tom Flanagan
> 


If you are using MyISAM tables (3.23.x) you can simply copy them from
one computer to the other.  If you are using ISAM tables like in
3.22 you will need to do something like:


On FreeBSD:
mysqldump --opt <database> > dumpfile

then on windows
mysql database < dumpfile


you should check the manual for details on mysqldump because you
may need to pass it a password, you might not want --opt, etc etc.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to