November 29th, 1999, 06:50 PM
-
Can I copy MySQL files created on Win32 to Unix server? I'm pretty sure there would be no problems, since the MySQL code is almost the same on on both platforms, so it should work. But it would be nice if someone could confirm it?
Please??
------------------
Alex D. G.
http://www.alexdg.com
November 30th, 1999, 12:10 PM
-
I don't know the answer to your question, but I'd recommend you do a
mysqldump databasename > filename
on the unix host, then do
mysql -h nthost.name.com -u username -p password databasename < filename
on the unix host.