How do we check Innodb plugin is installed or not in MySQL?
Is there any variable to check Innodb Plugin is installed or not?
How do we check Innodb plugin is installed or not in MySQL? Is there
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.
If you need to determine whether or not InnoDB is enabled by querying the database, you should use the INFORMATION_SCHEMA tables.
Which, if InnoDB is enabled and is the default database, gives a result of
If InnoDB is available, but not the default engine, the result will be
YES. If it’s not available, the result will obviously beNO.Please see https://dev.mysql.com/doc/refman/8.0/en/information-schema-engines-table.html
and https://dev.mysql.com/doc/refman/8.0/en/information-schema.html for reference.
When InnoDB is available, the INFORMATION_SCHEMA tables you mentioned in a comment are also available.