MySQL Forums
Forum List  »  InnoDB

Re: InnoDB doesn't work
Posted by: Rick James
Date: March 18, 2009 08:12PM

Look in mysqld.err -- the reason for failure should be there.

A likely cause... If you changed
innodb_log_file_size = 100M
you need to
1. stop mysql cleanly
2. delete the old iblog files
3. restart mysql -- it will rebuild them of the new size.

Note -- changing the _default_ engine will NOT change any _existing_ tables. That needs to be done with individual
ALTER TABLE foo ENGINE=InnoDB;
statements.

Note also, InnoDB's disk footprint is typically 2x-3x bigger than MyISAM.

Options: ReplyQuote


Subject
Views
Written By
Posted
3761
March 17, 2009 11:49PM
1806
March 18, 2009 03:27AM
Re: InnoDB doesn't work
1819
March 18, 2009 08:12PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.