I am new to MySQL and want to have InnoDB table type for my database tables. With me phpMyAdmin does not show me InnoDB Storage Engine. I assume that InnoDB was not installed with MySQL Server installation. How to install InnoDB Engine or InnoDB table type in MySQL.
Answer No: 47
To get InnoDB enabled, open my.ini file and do the following:
1. Find skip-innodb directive from this file and place # before it to comment out. It will appear like #skip-innodb. 2. Save my.ini and restart the MySQL.
Then refresh phpMyAdmin, InnoDB Engine will be available to use.