I have a table "Bestelling" with 4 columns: "Id" (PK), "KlantId", "Datum", "BestellingsTypeId", now I want to make the column Id auto_increment, however, when I try to do that, I get this error:

ERROR 1062: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '1' for key 'PRIMARY'

SQL Statement:

ALTER TABLE `aafest`.`aafest_bestelling` CHANGE COLUMN `Id` `Id` INT(11) NOT NULL AUTO_INCREMENT



ERROR: Error when running failback script. Details follow.



ERROR 1046: No database selected

SQL Statement:

CREATE TABLE `aafest_bestelling` (

  `Id` int(11) NOT NULL,

  `KlantId` int(11) DEFAULT NULL,

  `Datum` date DEFAULT NULL,

  `BestellingstypeId` int(11) DEFAULT NULL,

  PRIMARY KEY (`Id`)

) ENGINE=InnoDB DEFAULT CHARSET=latin1

Anyone got an idea?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Edit: Don't know exactly how that would be caused, but I do have a workaround.

First, create a new table like the old one:

CREATE TABLE aafest_bestelling_new LIKE aafest_bestelling.

Then change the column

ALTER TABLE `aafest`.`aafest_bestelling_new` CHANGE COLUMN `Id` `Id` INT(11) NOT NULL AUTO_INCREMENT

Dump in the new data:

INSERT INTO aafest_bestelling_new (KlantId, Datum, BestellingTypeId) SELECT KlantId, Datum, BestellingTypeId FROM aafest_bestelling;

Move the tables:

RENAME TABLE aafest_bestelling TO aafest_bestelling_old, aafest_bestelling_new TO aafest_bestelling

Maybe there's some corruption going on, and this would fix that as well.

P.S.: As a dutchman, I'd highly recommend coding in english ;)

link|improve this answer
ye, but the column is already PK, so all values should be unique, right? – Sander Declerck Mar 23 '11 at 9:15
Have a look.. I had my MySQL tables more than once in a state where uniqueness constraints were violated. SELECT Id, COUNT(*) as count From aafest_bestelling GROUP BY Id HAVING count > 1; – Evert Mar 23 '11 at 9:18
it returns 0 records... – Sander Declerck Mar 23 '11 at 9:21
Just edited my solution – Evert Mar 23 '11 at 9:33
feedback

I just had the same problem. Turns out that there was a record with the id set to 0. Changing this to a positive value allowed me to set auto_increment on that column.

link|improve this answer
and afterwards you can change the id back to 0 if you want – Niels Jan 12 at 10:02
I don't recommend that- I suspect it would cause issues again later – SystemParadox Jan 20 at 17:25
feedback

I also had this issue when trying to convert a column to auto_increment where one row had a value of 0. An alternative to changing the 0 value temporarily is via setting:

SET SESSION sql_mode='NO_AUTO_VALUE_ON_ZERO';

for the session.

This allowed the column to be altered to auto_increment with the zero id in place.

The zero isn't ideal - and I also wouldn't recommend it being used in an auto_increment column. Unfortunately it's part of an inherited data set so I'm stuck with it for now.

Best to clear the setting (and any others) afterwards with:

SET SESSION sql_mode='';

although it will be cleared when the current client session clsoes.

Full details on the 'NO_AUTO_VALUE_ON_ZERO' setting here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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