RE: isam to myisam

2005-01-24 Thread Bagus
Hello,

Does anyone out there have a working version of MySQL that supports the ISAM
and MyISAM engines and who might could convert my old database for me?

I'd really appreciate it. Please reply off the list.

Thanks,

Bagus



 -Original Message-
 From: Bagus [mailto:[EMAIL PROTECTED]
 Sent: Saturday, January 22, 2005 10:48 PM
 To: mysql@lists.mysql.com
 Subject: RE: isam to myisam


 SHOW ENGINES says no support for ISAM.

 So that explains it. Which other server would you suggest I try
 installing? Do you mean I should try installing an earlier
 version of mysql? Where should I find one?

 I'm worried about messing up my new installation by installing an
 old one. Is there an alternative?

 Thanks,

 Bagus

 (ugh)



  -Original Message-
  From: Paul DuBois [mailto:[EMAIL PROTECTED]
  Sent: Saturday, January 22, 2005 7:46 PM
  To: Bagus; mysql@lists.mysql.com
  Subject: RE: isam to myisam
 
 
  At 19:41 -0600 1/22/05, Bagus wrote:
 According to the help message, the --type option is for
  specifying the
table type that you want to convert the tables *to*.  So it
 should be
--type=MyISAM, I think.
  
You could also execute this statement for each table that
 you want to
convert:
  
ALTER TABLE tbl_name ENGINE=MyISAM;
  
  
  Both of these led to a similar error: Can't find editors.MYI.
 
  Hmm.  Perhaps your server doesn't have support for ISAM compiled in.
  What does the output of SHOW ENGINES indicate about the ISAM storage
  engine?  If it says NO, it won't be able to read ISAM tables at all.
  You'll need to find another server that does support ISAM.
 
 
 
  
  So I guess I need to change the subject to:
  HELP! I can't access my old tables!
  
  or
  
  Didn't find any fields in table.
  
  or something.
  
  Any ideas? Anyone: I have one database that I'd like to recover.
  The database had 5 tables in it.
  Each one had three files associated with it, ie editors.ISD,
  editors.ISM and
  editors.frm. I have access to the files, but not the old server
  that ran the
  old version of mysql.
  I copied them into /usr/local/mysql/data/BagusDatabase
  I made sure the permissions were the same as my test directory that was
  created on install... ie mysql owns everything.
  When entering the command mysql use BagusDatabase;
  mysql reports that:
  Didn't find any fields in table 'editors'
  
  How can I get my old tables into my new database?
  
  Thanks,
  
  Bagus
  
-Original Message-
From: Paul DuBois [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 20, 2005 10:58 PM
To: Bagus; mysql@lists.mysql.com
Subject: Re: isam to myisam
  
  
At 22:46 -0600 1/20/05, Bagus wrote:
Hi there,

I'm running Freebsd 5.3 and just installed
mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to
  run mysqld and
mysql, etc. I used to run Freebsd 2.2 and I think it was mysql
3.21.33b...
I'm not sure. My old system faded away rather abruptly and I
  didn't get a
chance to do database backups or anything.

I have one database that I'd like to recover. The database had 5
tables in
it. Each one had three files associated with it, ie editors.ISD,
editors.ISM
and editors.frm. I have access to the tables but can't load them
into my new
mysql. I copied them into /usr/local/mysql/data/BagusDatabase
and made sure
the permissions were the same as my test directory.

I have been reading around and thought I came across the
  answer with the
mysql_convert_table_format script. I tried changing into my new
BagusDatabase directory and running:
mysql_convert_table_format --user='root' --password='mypassword'
--type='ISA
M' BagusDatabase
  
According to the help message, the --type option is for
 specifying the
table type that you want to convert the tables *to*.  So it
 should be
--type=MyISAM, I think.
  
You could also execute this statement for each table that
 you want to
convert:
  
ALTER TABLE tbl_name ENGINE=MyISAM;
  
  

The script then reports:
Converting tables:
converting editors
Can't convert editors: Error Can't find file: 'editors.MYI'
  (errno: 2)

I bet this is old hat for some of you out  there. Can someone
help me figure
out how to recreate my database?

Thanks,

 Bagus
 
 
  --
  Paul DuBois, MySQL Documentation Team
  Madison, Wisconsin, USA
  MySQL AB, www.mysql.com
 
  --
  MySQL General Mailing List
  For list archives: http://lists.mysql.com/mysql
  To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
 


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: isam to myisam

2005-01-22 Thread Bagus

 According to the help message, the --type option is for specifying the
 table type that you want to convert the tables *to*.  So it should be
 --type=MyISAM, I think.

 You could also execute this statement for each table that you want to
 convert:

 ALTER TABLE tbl_name ENGINE=MyISAM;


Both of these led to a similar error: Can't find editors.MYI.

So I guess I need to change the subject to:
HELP! I can't access my old tables!

or

Didn't find any fields in table.

or something.

Any ideas? Anyone: I have one database that I'd like to recover.
The database had 5 tables in it.
Each one had three files associated with it, ie editors.ISD, editors.ISM and
editors.frm. I have access to the files, but not the old server that ran the
old version of mysql.
I copied them into /usr/local/mysql/data/BagusDatabase
I made sure the permissions were the same as my test directory that was
created on install... ie mysql owns everything.
When entering the command mysql use BagusDatabase;
mysql reports that:
Didn't find any fields in table 'editors'

How can I get my old tables into my new database?

Thanks,

Bagus

 -Original Message-
 From: Paul DuBois [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 20, 2005 10:58 PM
 To: Bagus; mysql@lists.mysql.com
 Subject: Re: isam to myisam


 At 22:46 -0600 1/20/05, Bagus wrote:
 Hi there,
 
 I'm running Freebsd 5.3 and just installed
 mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to run mysqld and
 mysql, etc. I used to run Freebsd 2.2 and I think it was mysql
 3.21.33b...
 I'm not sure. My old system faded away rather abruptly and I didn't get a
 chance to do database backups or anything.
 
 I have one database that I'd like to recover. The database had 5
 tables in
 it. Each one had three files associated with it, ie editors.ISD,
 editors.ISM
 and editors.frm. I have access to the tables but can't load them
 into my new
 mysql. I copied them into /usr/local/mysql/data/BagusDatabase
 and made sure
 the permissions were the same as my test directory.
 
 I have been reading around and thought I came across the answer with the
 mysql_convert_table_format script. I tried changing into my new
 BagusDatabase directory and running:
 mysql_convert_table_format --user='root' --password='mypassword'
 --type='ISA
 M' BagusDatabase

 According to the help message, the --type option is for specifying the
 table type that you want to convert the tables *to*.  So it should be
 --type=MyISAM, I think.

 You could also execute this statement for each table that you want to
 convert:

 ALTER TABLE tbl_name ENGINE=MyISAM;


 
 The script then reports:
 Converting tables:
 converting editors
 Can't convert editors: Error Can't find file: 'editors.MYI' (errno: 2)
 
 I bet this is old hat for some of you out  there. Can someone
 help me figure
 out how to recreate my database?
 
 Thanks,
 
 Bagus
 
 
 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


 --
 Paul DuBois, MySQL Documentation Team
 Madison, Wisconsin, USA
 MySQL AB, www.mysql.com

 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:
 http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: isam to myisam

2005-01-22 Thread Paul DuBois
At 19:41 -0600 1/22/05, Bagus wrote:
  According to the help message, the --type option is for specifying the
 table type that you want to convert the tables *to*.  So it should be
 --type=MyISAM, I think.
 You could also execute this statement for each table that you want to
 convert:
 ALTER TABLE tbl_name ENGINE=MyISAM;
Both of these led to a similar error: Can't find editors.MYI.
Hmm.  Perhaps your server doesn't have support for ISAM compiled in.
What does the output of SHOW ENGINES indicate about the ISAM storage
engine?  If it says NO, it won't be able to read ISAM tables at all.
You'll need to find another server that does support ISAM.

So I guess I need to change the subject to:
HELP! I can't access my old tables!
or
Didn't find any fields in table.
or something.
Any ideas? Anyone: I have one database that I'd like to recover.
The database had 5 tables in it.
Each one had three files associated with it, ie editors.ISD, editors.ISM and
editors.frm. I have access to the files, but not the old server that ran the
old version of mysql.
I copied them into /usr/local/mysql/data/BagusDatabase
I made sure the permissions were the same as my test directory that was
created on install... ie mysql owns everything.
When entering the command mysql use BagusDatabase;
mysql reports that:
Didn't find any fields in table 'editors'
How can I get my old tables into my new database?
Thanks,
Bagus
 -Original Message-
 From: Paul DuBois [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 20, 2005 10:58 PM
 To: Bagus; mysql@lists.mysql.com
 Subject: Re: isam to myisam
 At 22:46 -0600 1/20/05, Bagus wrote:
 Hi there,
 
 I'm running Freebsd 5.3 and just installed
 mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to run mysqld and
 mysql, etc. I used to run Freebsd 2.2 and I think it was mysql
 3.21.33b...
 I'm not sure. My old system faded away rather abruptly and I didn't get a
 chance to do database backups or anything.
 
 I have one database that I'd like to recover. The database had 5
 tables in
 it. Each one had three files associated with it, ie editors.ISD,
 editors.ISM
 and editors.frm. I have access to the tables but can't load them
 into my new
 mysql. I copied them into /usr/local/mysql/data/BagusDatabase
 and made sure
 the permissions were the same as my test directory.
 
 I have been reading around and thought I came across the answer with the
 mysql_convert_table_format script. I tried changing into my new
 BagusDatabase directory and running:
 mysql_convert_table_format --user='root' --password='mypassword'
 --type='ISA
 M' BagusDatabase
 According to the help message, the --type option is for specifying the
 table type that you want to convert the tables *to*.  So it should be
 --type=MyISAM, I think.
 You could also execute this statement for each table that you want to
 convert:
 ALTER TABLE tbl_name ENGINE=MyISAM;
 
 The script then reports:
 Converting tables:
 converting editors
 Can't convert editors: Error Can't find file: 'editors.MYI' (errno: 2)
 
 I bet this is old hat for some of you out  there. Can someone
 help me figure
 out how to recreate my database?
 
 Thanks,
 
  Bagus

--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


RE: isam to myisam

2005-01-22 Thread Bagus
SHOW ENGINES says no support for ISAM.

So that explains it. Which other server would you suggest I try installing?
Do you mean I should try installing an earlier version of mysql? Where
should I find one?

I'm worried about messing up my new installation by installing an old one.
Is there an alternative?

Thanks,

Bagus

(ugh)



 -Original Message-
 From: Paul DuBois [mailto:[EMAIL PROTECTED]
 Sent: Saturday, January 22, 2005 7:46 PM
 To: Bagus; mysql@lists.mysql.com
 Subject: RE: isam to myisam


 At 19:41 -0600 1/22/05, Bagus wrote:
According to the help message, the --type option is for
 specifying the
   table type that you want to convert the tables *to*.  So it should be
   --type=MyISAM, I think.
 
   You could also execute this statement for each table that you want to
   convert:
 
   ALTER TABLE tbl_name ENGINE=MyISAM;
 
 
 Both of these led to a similar error: Can't find editors.MYI.

 Hmm.  Perhaps your server doesn't have support for ISAM compiled in.
 What does the output of SHOW ENGINES indicate about the ISAM storage
 engine?  If it says NO, it won't be able to read ISAM tables at all.
 You'll need to find another server that does support ISAM.



 
 So I guess I need to change the subject to:
 HELP! I can't access my old tables!
 
 or
 
 Didn't find any fields in table.
 
 or something.
 
 Any ideas? Anyone: I have one database that I'd like to recover.
 The database had 5 tables in it.
 Each one had three files associated with it, ie editors.ISD,
 editors.ISM and
 editors.frm. I have access to the files, but not the old server
 that ran the
 old version of mysql.
 I copied them into /usr/local/mysql/data/BagusDatabase
 I made sure the permissions were the same as my test directory that was
 created on install... ie mysql owns everything.
 When entering the command mysql use BagusDatabase;
 mysql reports that:
 Didn't find any fields in table 'editors'
 
 How can I get my old tables into my new database?
 
 Thanks,
 
 Bagus
 
   -Original Message-
   From: Paul DuBois [mailto:[EMAIL PROTECTED]
   Sent: Thursday, January 20, 2005 10:58 PM
   To: Bagus; mysql@lists.mysql.com
   Subject: Re: isam to myisam
 
 
   At 22:46 -0600 1/20/05, Bagus wrote:
   Hi there,
   
   I'm running Freebsd 5.3 and just installed
   mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to
 run mysqld and
   mysql, etc. I used to run Freebsd 2.2 and I think it was mysql
   3.21.33b...
   I'm not sure. My old system faded away rather abruptly and I
 didn't get a
   chance to do database backups or anything.
   
   I have one database that I'd like to recover. The database had 5
   tables in
   it. Each one had three files associated with it, ie editors.ISD,
   editors.ISM
   and editors.frm. I have access to the tables but can't load them
   into my new
   mysql. I copied them into /usr/local/mysql/data/BagusDatabase
   and made sure
   the permissions were the same as my test directory.
   
   I have been reading around and thought I came across the
 answer with the
   mysql_convert_table_format script. I tried changing into my new
   BagusDatabase directory and running:
   mysql_convert_table_format --user='root' --password='mypassword'
   --type='ISA
   M' BagusDatabase
 
   According to the help message, the --type option is for specifying the
   table type that you want to convert the tables *to*.  So it should be
   --type=MyISAM, I think.
 
   You could also execute this statement for each table that you want to
   convert:
 
   ALTER TABLE tbl_name ENGINE=MyISAM;
 
 
   
   The script then reports:
   Converting tables:
   converting editors
   Can't convert editors: Error Can't find file: 'editors.MYI'
 (errno: 2)
   
   I bet this is old hat for some of you out  there. Can someone
   help me figure
   out how to recreate my database?
   
   Thanks,
   
Bagus


 --
 Paul DuBois, MySQL Documentation Team
 Madison, Wisconsin, USA
 MySQL AB, www.mysql.com

 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: isam to myisam

2005-01-20 Thread Paul DuBois
At 22:46 -0600 1/20/05, Bagus wrote:
Hi there,
I'm running Freebsd 5.3 and just installed
mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to run mysqld and
mysql, etc. I used to run Freebsd 2.2 and I think it was mysql 3.21.33b...
I'm not sure. My old system faded away rather abruptly and I didn't get a
chance to do database backups or anything.
I have one database that I'd like to recover. The database had 5 tables in
it. Each one had three files associated with it, ie editors.ISD, editors.ISM
and editors.frm. I have access to the tables but can't load them into my new
mysql. I copied them into /usr/local/mysql/data/BagusDatabase and made sure
the permissions were the same as my test directory.
I have been reading around and thought I came across the answer with the
mysql_convert_table_format script. I tried changing into my new
BagusDatabase directory and running:
mysql_convert_table_format --user='root' --password='mypassword' --type='ISA
M' BagusDatabase
According to the help message, the --type option is for specifying the
table type that you want to convert the tables *to*.  So it should be
--type=MyISAM, I think.
You could also execute this statement for each table that you want to
convert:
ALTER TABLE tbl_name ENGINE=MyISAM;

The script then reports:
Converting tables:
converting editors
Can't convert editors: Error Can't find file: 'editors.MYI' (errno: 2)
I bet this is old hat for some of you out  there. Can someone help me figure
out how to recreate my database?
Thanks,
Bagus
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


RE: isam to myisam

2005-01-20 Thread Bagus

I did try
--type='myisam'
--type='isam'
--type=myisam
--type=isam
--type='MYISAM'
--type=MYISAM
--type='ISAM'
--type=ISAM

All produced identical errors.

Specifying the individual tables didn't change the error note. Any other
ideas?

Is this the right way to go about changing these ISD, ISM, and frm files to
MYD, MYI and frm? Do I need to do this? Is there another way to get mysql to
read the old ISD, ISM and frm files?

Thanks,

Bagus

 -Original Message-
 From: Paul DuBois [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 20, 2005 10:58 PM
 To: Bagus; mysql@lists.mysql.com
 Subject: Re: isam to myisam


 At 22:46 -0600 1/20/05, Bagus wrote:
 Hi there,
 
 I'm running Freebsd 5.3 and just installed
 mysql-standard-4.1.9-unknown-freebsd4.7-i386. I'm able to run mysqld and
 mysql, etc. I used to run Freebsd 2.2 and I think it was mysql
 3.21.33b...
 I'm not sure. My old system faded away rather abruptly and I didn't get a
 chance to do database backups or anything.
 
 I have one database that I'd like to recover. The database had 5
 tables in
 it. Each one had three files associated with it, ie editors.ISD,
 editors.ISM
 and editors.frm. I have access to the tables but can't load them
 into my new
 mysql. I copied them into /usr/local/mysql/data/BagusDatabase
 and made sure
 the permissions were the same as my test directory.
 
 I have been reading around and thought I came across the answer with the
 mysql_convert_table_format script. I tried changing into my new
 BagusDatabase directory and running:
 mysql_convert_table_format --user='root' --password='mypassword'
 --type='ISA
 M' BagusDatabase

 According to the help message, the --type option is for specifying the
 table type that you want to convert the tables *to*.  So it should be
 --type=MyISAM, I think.

 You could also execute this statement for each table that you want to
 convert:

 ALTER TABLE tbl_name ENGINE=MyISAM;


 
 The script then reports:
 Converting tables:
 converting editors
 Can't convert editors: Error Can't find file: 'editors.MYI' (errno: 2)
 
 I bet this is old hat for some of you out  there. Can someone
 help me figure
 out how to recreate my database?
 
 Thanks,
 
 Bagus
 
 
 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


 --
 Paul DuBois, MySQL Documentation Team
 Madison, Wisconsin, USA
 MySQL AB, www.mysql.com

 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: ISAM to MyISAM Convert pls

2005-01-04 Thread Gleb Paharenko
Hello.



As of MySQL 4.1, ISAM support is  included in the source but not enabled in 

binary distributions. 



[EMAIL PROTECTED] wrote:

 hello

 i hope im correct here

 i have a problem, after upgrade 4.1 from 4.0 one table is away (index)

 i have table.ISM,.frm and .ISD.

 when i try to convert it with ALTER TABLE table TYPE = MYISAM;

 he only says did not found table.MYI

 (where table is my name of the table)

 how i can convert it to MYI?

 before update i had MYI file with this table..the other tables are ok only 

 this are now

 ISM,FRM and )ISD file whoich cannot be read my mysql now...

 thx

 richard 

 

 



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.NET http://www.ensita.net/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Gleb Paharenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.NET
   ___/   www.mysql.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: ISAM 2 MyISAM Conversion

2001-12-06 Thread Jeremy Zawodny

On Mon, Dec 03, 2001 at 09:28:11AM -0800, Steve Osborne wrote:

 I have an existing database with ISAM tables that I would like to
 convert to MyISAM tables.  Using phpMyAdmin, I can change the table
 type using a drop-down box, however I do not know the repercussions
 of the table type conversion.

Shouldn't be any. :-)
-- 
Jeremy D. Zawodny, [EMAIL PROTECTED]
Technical Yahoo - Yahoo Finance
Desk: (408) 349-7878   Fax: (408) 349-5454   Cell: (408) 685-5936

MySQL 3.23.41-max: up 7 days, processed 158,349,997 queries (257/sec. avg)

-
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




RE: ISAM v.s. MYISAM

2001-05-15 Thread Dave Carter

I'm working a project with the same exact scenario right now. My ver. of
mySQL is 3.23.xx and my client's is 3.22.xx. there table sturcturing is ISAM
and mine is myISAM. The only I've been able to transfer succesfully is by
dumping all the data and re-importing on the clients end.

-Original Message-
From: Warren van der Merwe [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 7:27 AM
To: [EMAIL PROTECTED]
Subject: ISAM v.s. MYISAM


Hi there

I am working on a site where they are using ISAM files, (.ISM  .IS1), I
want to know if there is a way of accessing these from MYSQL? From what I
have been able to tell they appear totally differently in comparison to some
of my MYISAM table when I open them in Notepad. Can anyone shed some light?



~
Warren van der Merwe
Software Director
PRT Trading (Pty) Ltd t/a RedTie
Durban, South Africa
Cell (+27-83) 262-9163
Office (+27-31) 767-0249



-
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



-
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




RE: ISAM and MYISAM

2001-02-10 Thread Carsten H. Pedersen

 Hi,
 I've read some people talking about ISAM and MYISAM table.
 I dont understand what are those tables and can anyone explain to 
 me and the
 difference of each table. and also which one has better performance?

Read The Fine Manual, chapter 8: MySQL table types

/ Carsten
--
Carsten H. Pedersen
keeper and maintainer of the bitbybit.dk MySQL FAQ
http://www.bitbybit.dk/mysqlfaq
 

-
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




Re: ISAM and MYISAM

2001-02-10 Thread Thalis A. Kalfigopoulos

I'm new too, but a good starting point would be:
http://www.mysql.com/doc/T/a/Table_types.html


regards,
thalis

---+
You're definitely on their list. 
The correct question to ask is what list it is.
---+

On Sat, 10 Feb 2001, Teddy A Jasin wrote:

 Hi,
 I've read some people talking about ISAM and MYISAM table.
 I dont understand what are those tables and can anyone explain to me and the
 difference of each table. and also which one has better performance?


-
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