tech:taille_des_bases_mysql_mariadb
Taille des bases MySQL/MariaDB
Source : https://stackoverflow.com/questions/1733507/how-to-get-size-of-mysql-database
SELECT table_schema "DB Name", ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" FROM information_schema.tables GROUP BY table_schema;
tech/taille_des_bases_mysql_mariadb.txt · Dernière modification : de 127.0.0.1
