112,3 मियो क्या? पंक्तियाँ? ख?
यदि यह भंडारण आकार है, तो चिंता की कोई बात नहीं है, यह इस बारे में है कि डिस्क स्थान के उपयोग को कैसे अनुकूलित किया जाता है (वैक्यूम/अनुकूलित तालिका)।http://dev.mysql.com/doc/refman/5.1/hi/optimize-table.html
दूसरी ओर, यदि यह पंक्तियाँ हैं, तो आपको अलग-अलग तालिकाओं को ट्रैक करना होगा और पता लगाना होगा कि क्यों।
उपयोग करें (स्कीमा नाम बदलें)
SELECT TABLE_NAME, table_rows, data_length, index_length,
round(((data_length + index_length) / 1024 / 1024),2) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "test"
union all
SELECT 'total', sum(table_rows), sum(data_length), sum(index_length),
sum(round(((data_length + index_length) / 1024 / 1024),2)) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "test" group by 1