mysql table is marked as crashed and last (automatic?) repair failed
449 ワード
MySQLDumpデータベースのバックアップ中に次のエラーメッセージが表示されました.
Error: Table './db_name/table_name' is marked as crashed and last (automatic?) repair failed
プロンプトデータベースのテーブルにエラーが発生しました.
1、データベースの停止
2、データベースディレクトリに入り、破損したテーブルを修復する
3、データベースの再起動
Error: Table './db_name/table_name' is marked as crashed and last (automatic?) repair failed
プロンプトデータベースのテーブルにエラーが発生しました.
myisamchk
というツールを使用して修復できます.操作手順は次のとおりです.1、データベースの停止
service mysqld stop
2、データベースディレクトリに入り、破損したテーブルを修復する
myisamchk -r table.name.MYI
3、データベースの再起動
service mysqld start