I´m using mysql 3.23.26 and, when I try to inert data into the following table:
CREATE TABLE modelos_pet (id tinyint(4) DEFAULT '0' NOT NULL AUTO_INCREMENT, description varchar(250), area_id varchar(2), peticao MEDIUMTEXT, PRIMARY KEY (id), UNIQUE id (id));
the table only lets me insert 127 records...
when trying to figure out what was happening , my MySQL client diplayed the following message:
Got error 127 from table handler
I´ve got to inset up to 500 records on this table, but I can´t figure out why I´m limited to only 127 records...
Does anyone have any idea of what may be the problem...
any help will be apreciated..
Fernando Michelotti