I've begun receiving the above error when trying to add a record to a database. The column in question is set to 'auto_increment' and is of datatype 'INT' with a length of 10.
Looking around online I can see that this error can occur when an auto incremented column reached its upper limit - however in this instance the table only contains 6342 records, and the column should be able to hold much more.
Indeed, the application in question is used in several installations and in some cases the equivalent table with an identical structure has many more records than this without generating an error.
Stranger still, when I changed the datatype of this column to 'BIGINT', it resolved the issue - even though on other installations it remains the same with more records.
Can anyone suggest any reasons why this issue may have occurred?
Thanks in advance.
SELECT @@auto_increment_incrementreturn on the problematic instance? – Quassnoi Jul 19 '11 at 17:19