Re: Converting many tables into MyISAM

2002-12-18 Thread Benjamin Pflugmann
Hello. For changing one table, the recommended way is ALTER TABLE foo TYPE=MYISAM; There is no built-in way to change several tables at once. I regulary have the need to apply the same command to some tables. If you use some UNIX shell, you can do something like this: mysql your_db -t -e "S

Re: Converting many tables into MyISAM

2002-12-18 Thread Paul DuBois
At 18:58 + 12/18/02, John P wrote: I have about 300 database tables that are mostly ISAM and some MyISAM format. I would like to move them all into MyISAM - what's the easiest/quickest way? I am running 3.23.54. I was thinking of doing mysqldump, then using a search/replace in the file CREATE

Re: Converting many tables into MyISAM

2002-12-18 Thread Chris . Kulish
(bcc: Chris Kulish/BDN/ING-FSI-NA) Subject: Converting many tables into MyISAM

Converting many tables into MyISAM

2002-12-18 Thread John P
I have about 300 database tables that are mostly ISAM and some MyISAM format. I would like to move them all into MyISAM - what's the easiest/quickest way? I am running 3.23.54. I was thinking of doing mysqldump, then using a search/replace in the file CREATE TABLE .. TYPE=, then recreating the dat