mysql list all databases and size


mysql -e 'SELECT table_schema AS "Database name", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;'

Leave a Reply

Your email address will not be published. Required fields are marked *