- How can I determine type of mysql database : whether it is InnoDB or MyISAM ?
- How can I convert MyISAM to InnoDB or vice-versa ?
How can I determine type of mysql database : whether it is InnoDB or
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To determine the storage engine being used by a table, you can use
show table status. TheEnginefield in the results will show the database engine for the table. Alternately, you can select theenginefield frominformation_schema.tables:You can change between storage engines using
alter table:Where, of course, you can specify any available storage engine.