Skip to content

LAMP Tips!

Tips for Linux, Apache (and Nginx!), MySQL and PHP!

Categories

  • Apache
  • Linux
  • MySQL
  • Security
January 2013
M T W T F S S
« Mar   Jun »
 123456
78910111213
14151617181920
21222324252627
28293031  

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

MySQL/General – Resolving issues with MyISAM Tables

MyISAM Sucks.

The solution is as follows:

  1. Log into MySQL
  2. Change to the database where the table resides
  3. Execute the following:
 ALTER TABLE [TableName] ENGINE=InnoDB;

Your MyISAM issues are now history.

Posted on January 28, 2013 11:08:36 amJanuary 16, 2014 11:28:21 amAuthor LampTipsCategories MySQLTags innodb, myisam, mysql

You must log in to post a comment.

Post navigation

Previous Previous post: Linux/General – Add an existing user to an existing group
Next Next post: MySQL/General – The server is not configured as a slave
Proudly powered by WordPress