I imported all of our database to a new server. When I looked at the tables I see the indexes, but they all show a cardinality of 0. If I remove one index and add it back in, it triggers all the other indexes to run, but there's 180 tables. Is there a way to force all the tables to run their indexes?
feedback
|
|
You could try mysqlcheck. Your specific requirements may be different, so check the docs, but something along these lines might help:
The | |||
|
feedback
|
|
Try Rebuilding or Repairing Tables or Indexes. It sounds like you basically need to rebuild all your indices. | |||
|
feedback
|