Actions
Anomalie #1401
fermétaille de la table des logs de sympa
Difficulté:
2 Facile
Description
mysql> select count(*) from logs_table ; +----------+ | count(*) | +----------+ | 32953 | +----------+ 1 row in set (0.00 sec)
Actions
#1
Mis à jour par Vincent-Xavier JUMEL il y a environ 11 ans
- Projet changé de Libre en Fête à Admins
- Difficulté mis à 2 Facile
Actions
#2
Mis à jour par Vincent-Xavier JUMEL il y a environ 11 ans
- Statut changé de Nouveau à Un jour peut-être
- Priorité changé de Normale à Faible
http://stackoverflow.com/questions/9620198/how-to-get-the-sizes-of-the-tables-of-a-mysql-database
mysql> select table_name as "Table", round (((data_length + index_length) /1024 / 1024),2) "Size in MB" from information_schema.TABLES where table_schema = sympa and table_name = "logs_table"; ERROR 1054 (42S22): Unknown column 'sympa' in 'where clause' mysql> select table_name as "Table", round (((data_length + index_length) /1024 / 1024),2) "Size in MB" from information_schema.TABLES where table_schema = "sympa" and table_name = "logs_table"; +------------+------------+ | Table | Size in MB | +------------+------------+ | logs_table | 11.33 | +------------+------------+ 1 row in set (0.00 sec)
À regarder un jour, peut-être
Actions
#3
Mis à jour par François Poulain il y a environ 8 ans
- Description mis à jour (diff)
- Statut changé de Un jour peut-être à Fermé
Je ne comprends pas le soucis. Depuis sympa a été réinstallé d'ailleurs.
Actions