1 件中 1 - 1 件を表示
Displaying posts with tag: CHECK TABLE (reset)
MySQLのチェック表

Original post: http://anothermysqldba.blogspot.com/2013/06/mysql-check-table.html

MySQLのチェックtablesコマンドは、次の操作を実行したい人のために非常に有用である: 

  • バージョンの互換性の確認
  • データの整合性をチェックする
  • アップグレード
  • 一般的なテーブルエラー

プロセスは十分に簡単です: 

> show tables;
+-----------------+
| Tables_in_world |
+-----------------+
| City |
| Country |
| CountryLanguage |
+-----------------+

> check table City\G
*************************** 1. row ***************************
Table: world.City
Op: check

[さらに読む]
1 件中 1 - 1 件を表示