#author("2024-09-02T06:36:08+00:00","default:iseki","iseki") ** Maintenance of MySQL [#p08aee0a] *** エンジンチェック [#ccfee546] > use information_schema; > select table_name, engine from tables where table_schema = "jogrid_db"; *** ISAM 修復 [#d6210ca8] $ mysqlcheck -c -r データベース名 -u root -p *** Innodb 修復 [#o6e69f5d] > use jogrid_db; > ALTER TABLE テーブル名 ENGINE=INNODB;