Re: How to use a database from Sun solaris to Linux

2001-01-26 Thread Remco van den Berg
On Fri, Jan 26, 2001 at 01:28:14PM +0100, Legeard Luc wrote: Hello I 'd like migrate my mysql server wich run on a Sunsolaris to a Linux computer. I have installed mysql on my linux and it works Now , i'like to move database from Unix to Linux A copy database ( *.ISD, *.ISM,*.frm) to

Re: How to use a database from Sun solaris to Linux

2001-01-26 Thread Artem Koutchine
AFAIK, ISD, ISM is isam type table which are platform dependent. So, you cannot just COPY them. You need to do something trikier (sqldump and then restore using mysql) MYD, MYI - are myisam tables and they are declarede platform independet. You can move then around w/o trouble (AFAIK again).