Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So i just truncated my table but now my primary key will not auto increment. Every time I add a 2nd item to the table, it comes back with 1062: Duplicate entry '0' for key 'PRIMARY'

I thought when you truncate a table it will just resets the auto increment back to 1.

I search around on what I could do but I have come across many people saying just truncate.

What I did

"TRUNCATE TABLE mytable;"

I must have done something wrong.

share|improve this question
Can you provide the output of DESCRIBE mytable. – mellamokb May 24 '12 at 20:08
Ensure that your primary key column is still defined as auto_increment. – Marcus Adams May 24 '12 at 20:09
try with dropping and creating the table again – Romil May 24 '12 at 20:14

1 Answer

up vote 6 down vote accepted

This bug not affects Mysql 5.0 and it is repeatable on 6.0 and 5.1.23 and 5.1BK.

Refer this link for proof

Following is readily available and effective workaround is to ALTER the autoinc value after the table is truncated.

Re-initialize the autoinc value right after truncation

alter table tablename AUTO_INCREMENT = n; /* set n as desired */

share|improve this answer
thanks, I had a feeling about it being a bug but I wasn't sure – CaucasianAsianX May 24 '12 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.