MySQL to find all tables with footer with full text in them

I need to start the repair in all the tables in all my databases on my MySQL5 server because I updated the MySQL full text search file.

Is there a request or command to accomplish this?

+7
source share
1 answer

Yes, you just need to query the INFORMATION_SCHEMA table . STATISTICS :

 SELECT TABLE_SCHEMA, TABLE_NAME FROM statistics WHERE index_type LIKE 'FULLTEXT%' 
+10
source

All Articles