I'm loading a RDB with dummy data to practice query optimization. MySQL Workbench executed 10,000 INSERT
s without returning an error into my customers
table. Yet, when I SELECT *
from that table I am only getting back exactly 1000 records in the result set. I am using InnoDB as my table engine
According to this link I should have unlimited records available and a 64TB overall sizelimit.. Im inserting 10,000 records with 4 VARCHAR(255)
columns and 2 BOOLEAN
columns each and I don't think that tops 1 TB. Am I wrong in this assumption?
Is the result grid limited to 1000 records? Is there an alternative to InnoDB which supports foreign keys? Is the problem that VARCHAR(255)
is way too large and I need to reduce to something like VARCHAR(50)
? What am I not understanding.
THANK YOU IN ADVANCE