Tecnologia
Verificar tamanho (volume) de um banco de dados MySQL pelo Terminal (Shell)
15/01/2020 às 13:30 Bruno Couty
Execute, no terminal MySQL:
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;
OBS: Retorno em MB