Tagged Questions

3
votes
1answer
447 views

Primary Key Identity Value Increments On Unique Key Constraint Violation

I have a SqlServer 2008 table which has a Primary Key (IsIdentity=Yes) and three other fields that make up a Unique Key constraint. In addition I have a store procedure that inserts a record into the ...
1
vote
1answer
439 views

postgresql: error duplicate key value violates unique constraint

This question have been asked by several people but my problem seems to be different. Actually I have to merge same structured tables from different databases in postgresql into a new DB. What I am ...
1
vote
6answers
567 views

Double-click double-insert resolutions?

A team member has run into an issue with an old in-house system where a user double-clicking on a link on a web page can cause two requests to be sent from the browser resulting in two database ...
0
votes
6answers
85 views

SQL INSERT Violation Primary Keys

I have a table with a primary key composed of three columns: CODE_TARIF, UNITE, MODE_LIV. In my table there are three records with MODE_LIV = 2. Then I insert a record with MODE_LIV = 4. INSERT INTO ...
0
votes
1answer
370 views

Violation of PRIMARY KEY constraint on linked record when add a record using the entity framework

I have the following problem: I have a table called farmers. Each farmer has a country specified that is mandatory. When I add a new farmer to the database using antity framework, I get a violation ...