Vorrei sapere quanto spazio utilizza il mio database MySQL per selezionare un host web. Ho trovato il comando, SHOW TABLE STATUS LIKE 'table_name'
quindi quando eseguo la query ottengo qualcosa del genere:
Name | Rows | Avg. Row Length | Data_Length | Index Length
---------- ---- --------------- ----------- ------------
table_name 400 55 362000 66560
- i numeri sono arrotondati.
Quindi ho 362000 o 400 * 362000 = 144800000 byte di dati per questa tabella? E cosa significa Lunghezza indice? Grazie !