Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to check if innodb_file_per_table is set in MYSQL 5.5 per table?

Tags:

I want to check if innodb_file_per_table is set (i.e .ibd is created) for each database tables using MYSQL-5.5 query.

Any way to do it?

like image 451
Deepak Ingole Avatar asked Mar 26 '14 04:03

Deepak Ingole


1 Answers

mysql> show variables like 'innodb_file_per_table'; +-----------------------+-------+ | Variable_name         | Value | +-----------------------+-------+ | innodb_file_per_table | ON    | +-----------------------+-------+ 1 row in set (0.00 sec) 
like image 75
Igor Tverdovskiy Avatar answered Sep 21 '22 08:09

Igor Tverdovskiy