My all applications do not use InnoDB table type. With me phpMyAdmin shows InnoDB Storage Engine. I assume that InnoDB is installed with MySQL Server installation. Whereas I am not in need of this engine so I want to uninstall InnoDB Engine. Can you help me to explain, how to uninstall InnoDB Engine or InnoDB table type in MySQL?
To get InnoDB un-installed, open my.ini file and do the following:
1. Find
skip-innodb directive from this file and replace
# before it to un-comment out.
It will appear like
skip-innodb.
2. Save my.ini and restart the MySQL.
Then refresh phpMyAdmin, InnoDB Engine will be no more to use.