RE: Converting to InnoDB?

2005-04-25 Thread mathias fatene
Yes, but your myIsam Tables stay myisam ones.

After restarting, you must change them to innodb by :

Alter table toto storage=innodb.

For new tables, they will have innodb storage.

Best Regards

Mathias FATENE
 
Hope that helps
*This not an official mysql support answer
 


-Original Message-
From: Carl Riches [mailto:[EMAIL PROTECTED] 
Sent: lundi 25 avril 2005 19:26
To: mysql@lists.mysql.com
Cc: Carl Riches
Subject: Converting to InnoDB?



We are running MySQL on Red Hat Enterprise Linux 3, using the Red Hat-
supplied RPM file mysql-server-3.23.58-2.3.  Our current MySQL 
configuration has MyISAM as the default database file type.  I would
like 
to change this such that InnoDB is the default.  My understanding of the

documentation says that, after changing the configuration file and 
restarting the MySQL server, there will be no problems using the
existing 
MyISAM databases.

Is that correct?

Thanks,
Carl G. Riches
Software Engineer
Department of Mathematics
Box 354350  voice: 206-543-5082 or 206-616-3636
University of Washingtonfax:   206-543-0397
Seattle, WA  98195-4350 internet:  [EMAIL PROTECTED]

-- 
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: Converting to InnoDB?

2005-04-25 Thread mathias fatene
Sorry,
Alter table toto ENGINE=innodb.

You don't must, you can. You can also have differents storage ENGINES in
the same mysql database.
With innodb, you will earn ROW level locking.

Best Regards

Mathias FATENE
 
Hope that helps
*This not an official mysql support answer
 


-Original Message-
From: mathias fatene [mailto:[EMAIL PROTECTED] 
Sent: lundi 25 avril 2005 19:33
To: 'Carl Riches'; 'mysql@lists.mysql.com'
Subject: RE: Converting to InnoDB?


Yes, but your myIsam Tables stay myisam ones.

After restarting, you must change them to innodb by :

Alter table toto storage=innodb.

For new tables, they will have innodb storage.

Best Regards

Mathias FATENE
 
Hope that helps
*This not an official mysql support answer
 


-Original Message-
From: Carl Riches [mailto:[EMAIL PROTECTED] 
Sent: lundi 25 avril 2005 19:26
To: mysql@lists.mysql.com
Cc: Carl Riches
Subject: Converting to InnoDB?



We are running MySQL on Red Hat Enterprise Linux 3, using the Red Hat-
supplied RPM file mysql-server-3.23.58-2.3.  Our current MySQL 
configuration has MyISAM as the default database file type.  I would
like 
to change this such that InnoDB is the default.  My understanding of the

documentation says that, after changing the configuration file and 
restarting the MySQL server, there will be no problems using the
existing 
MyISAM databases.

Is that correct?

Thanks,
Carl G. Riches
Software Engineer
Department of Mathematics
Box 354350  voice: 206-543-5082 or 206-616-3636
University of Washingtonfax:   206-543-0397
Seattle, WA  98195-4350 internet:  [EMAIL PROTECTED]

-- 
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: Converting to InnoDB?

2005-04-25 Thread Carl Riches
On Mon, 25 Apr 2005, mathias fatene wrote:
Sorry,
Alter table toto ENGINE=innodb.
You don't must, you can. You can also have differents storage ENGINES in
the same mysql database.
With innodb, you will earn ROW level locking.
Best Regards

Mathias FATENE
Thanks, Mathias!
Carl
Carl G. Riches
Software Engineer
Department of Mathematics
Box 354350  voice: 206-543-5082 or 206-616-3636
University of Washingtonfax:   206-543-0397
Seattle, WA  98195-4350 internet:  [EMAIL PROTECTED]
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: converting to Innodb.

2004-12-01 Thread Roger Baklund
Fredrik Carlsson wrote:
Hi list,
I have a question regarding mysql and innodb.
My current setup uses myisam and the db size is about 1.6 GB with two 
table that each have about 500k rows. I perform alot of fulltext search 
on these tables and they can sometimes take along time to finish and 
when the table is locked during the fulltext search everything else 
stops working. I read at dev.mysql.com that myisam uses per table lock 
and innodb per row lock so my question is if i convert my tables to 
innodb will i be able to use the tables during a fulltext search?
According to the manual: FULLTEXT indexes are used with MyISAM tables only
URL: http://dev.mysql.com/doc/mysql/en/Fulltext_Search.html 
URL: http://dev.mysql.com/doc/mysql/en/Fulltext_Restrictions.html 
--
Roger
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: converting to Innodb.

2004-12-01 Thread Fredrik Carlsson
Roger Baklund wrote:
Fredrik Carlsson wrote:
Hi list,
I have a question regarding mysql and innodb.
My current setup uses myisam and the db size is about 1.6 GB with two 
table that each have about 500k rows. I perform alot of fulltext 
search on these tables and they can sometimes take along time to 
finish and when the table is locked during the fulltext search 
everything else stops working. I read at dev.mysql.com that myisam 
uses per table lock and innodb per row lock so my question is if i 
convert my tables to innodb will i be able to use the tables during a 
fulltext search?

According to the manual: FULLTEXT indexes are used with MyISAM tables 
only

URL: http://dev.mysql.com/doc/mysql/en/Fulltext_Search.html 
URL: http://dev.mysql.com/doc/mysql/en/Fulltext_Restrictions.html 
Sorry, i forgot that fulltext only works for myisam ;) i guess that a 
move to innodb is not that interesting anymore.

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


Re: converting to Innodb.

2004-12-01 Thread Jon Drukman
Fredrik Carlsson wrote:
Hi list,
I have a question regarding mysql and innodb.
My current setup uses myisam and the db size is about 1.6 GB with two 
table that each have about 500k rows. I perform alot of fulltext search 
on these tables and they can sometimes take along time to finish and 
when the table is locked during the fulltext search everything else 
stops working. I read at dev.mysql.com that myisam uses per table lock 
and innodb per row lock so my question is if i convert my tables to 
innodb will i be able to use the tables during a fulltext search?

InnoDB does not support FULLTEXT index.  Have you thought about breaking 
your table into two tables, one in MyISAM with just the FULLTEXT columns 
and one in InnoDB for the rest of the table?

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