Hi,
Is there a way to find the database size on MySQL v4.1 without information_schema? Getting the same result as the following query without using information_schema:
mysql> SELECT ENGINE, COUNT(*), SUM(DATA_LENGTH), SUM(INDEX_LENGTH) FROM information_schema.TABLES WHERE TABLE_SCHEMA='TABLE_SCHEMA_NAME' GROUP BY ENGINE;
Thank you.