Forum Moderators: coopster
The folks here have already given you a couple things to look into (and answer). bakedjake is correct, that amount of rows is nothing for MySQL to handle, but perhaps you have built yourself into some form of limitation inadvertently as suggested by rlkanter.
For the record...
MySQL Server was originally designed to work with medium size databases (10-100 million rows, or about 100MB per table) on small computer systems. Today MySQL Server handles terabyte-size databases, but the code can also be compiled in a reduced version suitable for hand-held and embedded devices. The compact design of the MySQL server makes development in both directions possible without any conflicts in the source tree.Resource:
[dev.mysql.com...]