How can I determine the current size of any given mysql database? I want to make an online database report with that particular piece of data. I'm running apache 1.3 and 2.0 on both mac os x and freeBSD.
Thanks for any help.
You can probably use the information from show table status SQL command. There are columns named data_length and index_length. You can sum it and it could give you some db size.
Zdenek