Anomalie #1401
fermé
taille de la table des logs de sympa
Ajouté par Vincent-Xavier JUMEL il y a environ 11 ans.
Mis à jour il y a presque 4 ans.
Description
mysql> select count(*) from logs_table ;
+----------+
| count(*) |
+----------+
| 32953 |
+----------+
1 row in set (0.00 sec)
- Projet changé de Libre en Fête à Admins
- Difficulté mis à 2 Facile
- 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
- 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.
- Assigné à mis à François Poulain
Formats disponibles : Atom
PDF