Hi, I am using Mysql 5.0.x
I just changed a lot of tables from MyISAM to InnoDB
Using MyISAM tables, it took 1 minute to install our database. In InnoDB, it takes 15 minutes to install the same database.
Why is InnoDB taking so long?
What can I do to speed things up?
Database installation performs the following steps
1) Drops the circuit
2) Create a circuit
3) Creating tables
4) Creating stored procedures
5) Insert default data
6) Insert data through a stored procedure
EDIT:
Inserting default data takes most of the time
mysql innodb myisam
Charles Faiga Jan 19 '09 at 9:51 2009-01-19 09:51
source share