0

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?

Lizard
  • 43,732
  • 39
  • 106
  • 167

1 Answers1

2

Change each table one by one?

alter table ... engine = InnoDB;
Remus Rusanu
  • 288,378
  • 40
  • 442
  • 569