Mostrando entradas 1 para 1
Displaying posts with tag: CHECK TABLE (reset)
Verifique a tabela MySQL

Original post: http://anothermysqldba.blogspot.com/2013/06/mysql-check-table.html
O comando tabelas check MySQL é muito útil para quem quer fazer o seguinte:

  • Verificar compatibilidade de versão
  • Verificação de Consistência de Dados
  • Upgrades
  • Erros gerais Tabela

O processo é bastante simples:

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

> check table City\G
*************************** 1. row ***************************
Table: world.City
Op: check
Msg_type: status
Msg_text: OK


Esta é uma boa tarefa para manter-se atualizado em …

[Leia mais]
Mostrando entradas 1 para 1