What is maximum records quantity a MySQL table can store?

Ivan picture Ivan · Oct 8, 2010 · Viewed 11.7k times · Source

How many records can a MySQL MyISAM table store? How many InnoDB can?

Answer

Thariama picture Thariama · Oct 8, 2010

You can't count by number of records because your table can have really short records with only a few int fields or your records might be really long with hundreds of fields.

So it has to be measured in the file size of the tables.

For MYSQL: The table size limit is based on the operating system drive file system that MySQL is installed on, ranging from 2GB to 2TB.

See the MySQL reference manual for full explanations of limits for each operating system.

Concerning InnoDb and MyIsam i do not know.