For anyone else reading this topic looking for a similar solution, I believe that it is important to emphasize and include within this discussion, a quote from the topic I previously linked to:

Originally Posted by vinny42 @phpfreaks.com
Overhead has very little impact on performance, do not optimize pre-emptively.

Why: running optimize causes MySQL to completely rebuild the table. it does this by marking the old table as "no longer used", and copying all data to the new table.

During this procedure you effectively have no working table.

If that operation is interrupted in any way other than what MySQL expects, you loose both copies of the table. What kind of interruptions can you get? Well running out of diskspace is a very popular one.

MySQL doesn't (or didn't, I haven't tried this for a while) check for the required amount of diskspace.

So if you want to get more diskspace by running OPTIMIZE, make sure you have enough space to rebuild the table (which you probably don't, otherwise you wouldn't want to clear diskspace smile )
SOURCE: http://forums.phpfreaks.com/topic/282841-can-somebody-tell-me-what-overhead-is-in-my-sql-database/


If disk space is not an issue, and your host is only limiting the max-size you may have per database, this may be the simple solution (short-term fix) you're looking for.



Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com