I have a MS SQL 2005 database with a table Test with column ID. ID is a identity column. I have rows in this table and all of them have their corresponding ID autoincremented value.

Now I would like to change every ID in this table like this:

ID = ID + 1

But when I do this I get error:

Cannot update identity column 'ID'.

I've tried with:

ALTER TABLE Test NOCHECK CONSTRAINT ALL 
set identity_insert ID ON

But this does not solve this problem.

I need to have identity set to this column, but I need to change values as well from time to time. So my question is how to acomplish this task that is required by my project.

link|improve this question

feedback

8 Answers

up vote 22 down vote accepted

You need to

set identity_insert YourTable ON

Then delete your row and reinsert it with different identity.

link|improve this answer
10  
setting this will work only when inserting data and not when updating. UPDATE statement will still fail. – Husein Roncevic Sep 23 '11 at 10:27
feedback

Firstly the setting of IDENTITY_INSERT on or off for that matter will not work for what you require (it is used for inserting new values, such as plugging gaps).

Doing the operation through the GUI just creates a temporary table, copies all the data across to a new table without an identity field, and renames the table.

link|improve this answer
feedback

Through the UI in SQL Server 2005 manager, change the column remove the autonumber (identity) property of the column (select the table by right clicking on it and choose "Design").

Then run your query

UPDATE table SET Id = Id + 1

Then go and add the autonumber property back to the column.

link|improve this answer
2  
And how to do this from code? – tomaszs Apr 15 '09 at 12:52
2  
If you make the change manually, you can ask the manager to generate the SQL script for the change (table designer menu, generate change script). For this change it creates a new table and copies the data across, then deletes the original. – Robin Bennett Jul 27 '09 at 9:57
feedback

If the column is not a PK you could always create a NEW column in the table with the incremented numbers, drop the original and then alter the new one to be the old.

curious as to why you might need to do this... most I've ever had to futz with Identity columns was to backfill numbers and I just ended up using DBCC CHECKIDENT ( tablename,RESEED,newnextnumber)

good luck!

link|improve this answer
feedback

As Miles D and MichaelPryor have already pointed out, you will have to create a new temp table, insert data there from the existing table (incrementing the value, maybe), dropping and recreating / truncating / deleting the original table and recreating from the temp table. All of this could not make sense if the IDENTITY field is also a PRIMARY key, referenced by external keys of some other table(s).

link|improve this answer
feedback

If you need to change the IDs occasionally, it's probably best not to use an identity column. In the past we've implemented autonumber fields manually using a 'Counters' table that tracks the next ID for each table. IIRC we did this because identity columns were causing database corruption in SQL2000 but being able to change IDs was occasionally useful for testing.

link|improve this answer
feedback

Identity modifying may fail depending on a number of factors, mainly revolving around the objects/relationships linked to the id column. It seems like db design is as issue here as id's should rarely if ever change (i'm sure you have your reasons and are cascasding the changes). If you really need to change id's from time to time, I'd suggest either creating a new dummy id column that isn't the primary key/autonumber that you can manage yourself and generate from the current values. Alternately, Chrisotphers idea above would be my other suggestion if you're having issues with allowing identity insert.

Good luck

PS it's not failing because the sequential order it's running in is trying to update a value in the list to an item that already exists in the list of ids? clutching at straws, perhaps add the number of rows+1, then if that works subtract the number of rows :-S

link|improve this answer
feedback

DBCC CHECKIDENT ( ‘databasename.dbo.orders’,RESEED, 999) you can change any identity column number with this command,and also you can start that field number from every number you want.for example in my command i ask to start from 1000 (999+1) hope that it would be enough...good luck

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.