0

テーブルには15,000行あり、スペース使用量は次のとおりです。

Type     |   Usage
Data     |   437.4 KiB
Index    |   157.0 KiB
Overhead |   7,000 B (this is in red)
Effective|   587.6 KiB
Total    |   594.4 KiB

[テーブルの最適化]をクリックすると、約10分後に読み取りタイムアウトが表示されます。この轍から抜け出す方法はありますか?

ERROR

The requested URL could not be retrieved

The following error was encountered while trying to retrieve the URL: Myaddress/phpmyadmin/sql.php?

Read Timeout

The system returned: [No Error]

A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.
4

1 に答える 1

0

私がしなければならなかったのは、PHPMYADMIN のような Web インターフェイスを使用するのではなく、MySQL Workbenchをダウンロードしてクエリでこれらのコマンド ラインを使用することでした。

use databasename;
check table tablename;
repair table tablename;
optimize table tablename;

CTRL+SHIFT+ENTER
于 2012-09-14T18:48:15.570 に答える