views:

96

answers:

2

I am trying to optimize the database buffer size, but i am finding the

SHOW TABLE STATUS

rather cryptic. I know that the data length is "165719261184"- how do i convert that into actual megabytes?

+2  A: 

It is in bytes, so divide by 1024^2: 158,042MB

WhirlWind