MySQL/Maintenance
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** Maintenance of MySQL [#p08aee0a]
*** エンジンチェック [#ccfee546]
> use information_schema;
> select table_name, engine from tables where table_sche...
*** ISAM 修復 [#d6210ca8]
$ mysqlcheck -c -r データベース名 -u root -p
*** Innodb 修復 [#o6e69f5d]
> use jogrid_db;
> ALTER TABLE テーブル名 ENGINE=INNODB;
終了行:
** Maintenance of MySQL [#p08aee0a]
*** エンジンチェック [#ccfee546]
> use information_schema;
> select table_name, engine from tables where table_sche...
*** ISAM 修復 [#d6210ca8]
$ mysqlcheck -c -r データベース名 -u root -p
*** Innodb 修復 [#o6e69f5d]
> use jogrid_db;
> ALTER TABLE テーブル名 ENGINE=INNODB;
ページ名: