I am trying to move my database from MySQL to RDS MySQL. I do a simple mysqldump to transfer.
I use this query:
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 = "schema_name";
But the size I see in HeidiSQL for RDS is much smaller.
- Before = 253MB
- RDS = 100MB
An example of a table with similar rows, but very different size:

Before
RDS
Is there any possible reason, or I am missing something?


