DEV Community

David Carr
David Carr

Posted on • Originally published at dcblog.dev on

How to rebuild search indexes on a table.

If you make server changes that could affect your indexes then you will need to rebuild your index in order to pick up new settings.

Step-by-step guide

Execute this MySQL command on the table required


REPAIR TABLE <TableName> QUICK;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

Retry later