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?
Yes, you just need to query the INFORMATION_SCHEMA table . STATISTICS :
INFORMATION_SCHEMA
STATISTICS
SELECT TABLE_SCHEMA, TABLE_NAME FROM statistics WHERE index_type LIKE 'FULLTEXT%'