How can I reindex the MySQL database? My webhost says database index is corrupted.
Do I run a SQL command? Examples?
Or is there some function within phpMyAdmin that re-index or repairs databases?
How can I reindex the MySQL database? My webhost says database index is corrupted.
Do I run a SQL command? Examples?
Or is there some function within phpMyAdmin that re-index or repairs databases?
A SQL query:
REPAIR TABLE [tbl_name]
Run it in the SQL/Query tab.