Keep in mind as well that datafiles for anything earlier than 3.23 are
rarely compatible between different architectures...you'll need to do a
mysqldump unless you're myisam tables in 3.23.x
regards,
P
On Mon, 15 Jan 2001, Scott
Baker wrote:
> You can use MySQL dump. However, copying the file
You can use MySQL dump. However, copying the files SHOULD work as long as
they are the same version (major version) and you stop the MySQL service
before copying.
Scott
At 06:09 PM 1/13/2001 -0600, John W Cunningham wrote:
>Hello all,
>
>I have a few databases running on a Win2k MySQL server
1) on Windoze:
c:\> mysqldump database_name > tables.sql
2) move tables.sql to your Linux server
3) on Linux:
$ mysql database_name < tables.sql
/ Carsten
--
Carsten H. Pedersen
keeper and maintainer of the bitbybit.dk MySQL FAQ
http://www.bitbybit.dk/mysqlfaq
> -Original M