happyhappy
10-18-2001, 11:43 PM
Just wondering, how do I check how much web space my MySQL database occupies? :stickout
![]() | View Full Version : MySQL space? happyhappy 10-18-2001, 11:43 PM Just wondering, how do I check how much web space my MySQL database occupies? :stickout driverdave 10-18-2001, 11:56 PM http://phpmyadmin.sourceforge.net/ I know this tells you EVERYTHING you'd ever want to know about MySQL, and more. happyhappy 10-19-2001, 01:30 AM I should have just asked my provider. They said that they had to modify the config file to enable this feature with phpmyadmin. But thanks for your help anyway. :cartman: afriq 10-22-2001, 04:58 AM Originally posted by happyhappy Just wondering, how do I check how much web space my MySQL database occupies? :stickout Log into your server (telnet or SSH) and do the following: su - (enter password) cd /home/mysql du -k exit (this will return you to the admin user account) You'll get a listing of all the databases, with the space (in KB) that each uses ... rgrds, Johan |