Is there anyway to transfer a WIN32 MySQL Database to a linux MySQL server. Some links would be helpful.
www.mysql.com, look for 'mysqldump' This will let you create a textfile that contains all the SQL commands required to re-build your tables in a database. You can use that file to rebuild your tables on unix or windows.
mysqldump -uwinusername -pwinpassword windatabase -hwinhost | mysql -uunixusername -punixpassword unixdatabase
something like that
Thanks Guys. I appredicate the help.