Comments on: Get database size in phpMyAdmin https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/ // TODO: insert witty tagline Tue, 18 Dec 2018 14:15:02 +0000 hourly 1 https://wordpress.org/?v=4.9.9 By: David Valladares https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-45083 Wed, 14 Nov 2018 21:35:51 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-45083 Very useful information. Thanks a lot!!!

]]>
By: ss https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-42439 Fri, 09 Jun 2017 23:00:58 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-42439 SELECT table_name AS “Table”,
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS “Size (MB)”
FROM information_schema.TABLES
WHERE table_schema = “database_name”
ORDER BY (data_length + index_length) DESC;

]]>
By: Indigoblue https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-36278 Thu, 24 Nov 2016 21:27:27 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-36278 […] Source: uponmyshoulder.com […]

]]>
By: Florent Delannoy https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-22738 Fri, 13 Nov 2015 10:23:12 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-22738 Ah! I ran into an issue today of my own mysql db being overloaded and turned read-only by OVH. Apparently newer versions of phpMyAdmin show the table size in the table list, meaning the technique this article is not all that useful anymore. :)

]]>
By: sancoLgates https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-22315 Wed, 28 Oct 2015 04:49:25 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-22315 Great, thanks man!

]]>
By: Srp https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-21720 Tue, 13 Oct 2015 18:24:23 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-21720 How to check size of each table

]]>
By: Fafa Shiro https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-19385 Thu, 09 Jul 2015 01:01:22 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-19385 Works like a charm! Awesome! Many thanks :)

]]>
By: Sbirigud https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-14857 Wed, 10 Dec 2014 14:28:05 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-14857 Great!! Awesome :-) many thanks

]]>
By: Sbirigud https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-14856 Wed, 10 Dec 2014 14:28:05 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-14856 Great!! Awesome :-) many thanks

]]>
By: Rahul Anand https://www.uponmyshoulder.com/blog/2010/get-database-size-in-phpmyadmin/comment-page-1/#comment-8401 Wed, 11 Sep 2013 14:32:45 +0000 http://www.uponmyshoulder.com/blog/?p=205#comment-8401 Thanks man, it just work like a charm. But there is another way, you can take a dump of your DB and then can check the .sql file size . LOL

]]>