views:

74

answers:

1

I am looking to convert my myisam mysql database to an innodb. I seem to keep coming up with conflicting ideas on how to do this or even if I should! What are your thoughts?

+1  A: 

Change each table one by one?

alter table ... engine = InnoDB;
Remus Rusanu