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?
mysql> show variables like 'innodb_file_per_table';
+-----------------------+-------+
| Variable_name | Value |
+-----------------------+-------+
| innodb_file_per_table | ON |
+-----------------------+-------+
1 row in set (0.00 sec)