vote up -1 vote down star

hi friends

I have to update the primary key. When i am inserting in a data grid it newly inserting a record. I am unable to. What is the reason, pls help me.

flag
What's your table structure? What version of SQL Server ? – marc_s Aug 21 at 7:00
Isn't your primary key an identity column. – adamantium Aug 21 at 7:09
1  
Can you post the procedure code that is doing the insert? – adamantium Aug 21 at 7:09
2  
this is exTREMEly vague and doesn't really help with answering. Some code or examples of what you're trying to do and what is happening would be helpful. – eidylon Aug 23 at 15:49

2 Answers

vote up 0 vote down

If your primary key is subject to change than it may not have been the best candidate for a primary key. All things being equal, you do not want to edit the primary key.

If there is a need to insert a specific value into the primary key (data migration for example), you can turn on IDENTITY_INSERT, do what you need to do, and then turn it back off.

This is rather dangerous if you're not careful and can cause collisions if not carefully controlled.

link|flag
vote up 0 vote down

Have you tried

SET IDENTITY_INSERT table ON
[Insert records]
SET IDENTITY_INSERT table OFF

???

link|flag

Your Answer

Get an OpenID
or

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