Detailed error message for violation of Primary Key constraint in sql2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:54:26Z http://stackoverflow.com/feeds/question/513718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008 2 Detailed error message for violation of Primary Key constraint in sql2008? capnsue 2009-02-04T22:39:22Z 2009-02-06T14:13:06Z <p>Hi!</p> <p>I'm inserting a large amount of rows into an empty table with a primary key constraint on one column. If there is a duplicate key error, is there any way to find out the value of the key (or row) that caused the error?</p> <p>Validating the data prior to the insert is sadly not something I can do right now.</p> <p>Using SQL 2008.</p> <p>Thanks!</p> http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008/513775#513775 -1 Answer by Bravax for Detailed error message for violation of Primary Key constraint in sql2008? Bravax 2009-02-04T22:54:47Z 2009-02-04T23:18:47Z <p>Revised:<br /> Since you don't want to insert twice, could you:</p> <pre><code>Drop the primary key constraint. Insert all data into the table Find any duplicates, and remove them Then re-add the primary key constraint </code></pre> <p>Previous reply: Insert the data into a duplicate of the table without the primary key constraint.</p> <p>Then run a query on it to determine rows which have duplicate values for the rpimary key column.</p> <pre><code>select count(*), &lt;Primary Key&gt; from table group by &lt;Primary Key&gt; having count(*) &gt; 1 </code></pre> http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008/513816#513816 0 Answer by capnsue for Detailed error message for violation of Primary Key constraint in sql2008? capnsue 2009-02-04T23:12:03Z 2009-02-04T23:12:03Z <p>Doing the count(*) / group by thing is something I'm trying to avoid, this is an insert of hundreds of millions of rows from hundreds of different DB's (some of which are on remote servers)...I don't have the time or space to do the insert twice.</p> <p>The data is supposed to be unique from the providers, but unfortunately their validation doesn't seem to work correctly 100% of the time and I'm trying to at least see where it's failing so I can help them troubleshoot.</p> <p>Thank you!</p> http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008/516697#516697 3 Answer by Brent Ozar for Detailed error message for violation of Primary Key constraint in sql2008? Brent Ozar 2009-02-05T16:36:55Z 2009-02-05T16:36:55Z <p>There's not a way of doing it that won't slow your process down, but here's one way that will make it easier. You can add an instead-of trigger on that table for inserts and updates. The trigger will check each record before inserting it and make sure it won't cause a primary key violation. You can even create a second table to catch violations, and have a different primary key (like an identity field) on that one, and the trigger will insert the rows into your error-catching table.</p> <p>Here's an example of how the trigger can work:</p> <pre><code>CREATE TRIGGER mytrigger ON sometable INSTEAD OF INSERT AS BEGIN INSERT INTO sometable SELECT * FROM inserted WHERE ISNUMERIC(somefield) = 1 FROM inserted; INSERT INTO sometableRejects SELECT * FROM inserted WHERE ISNUMERIC(somefield) = 0 FROM inserted; END </code></pre> <p>In that example, I'm checking a field to make sure it's numeric before I insert the data into the table. You'll need to modify that code to check for primary key violations instead - for example, you might join the INSERTED table to your own existing table and only insert rows where you don't find a match.</p> http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008/517443#517443 0 Answer by HLGEM for Detailed error message for violation of Primary Key constraint in sql2008? HLGEM 2009-02-05T19:13:09Z 2009-02-05T19:13:09Z <p>Use SSIS to import the data and have it check for this as part of the data flow. That is the best way to handle. SSIS can send the bad records to a table (that you can later send to the vendor to help them clean up their act) and process the good ones.</p> http://stackoverflow.com/questions/513718/detailed-error-message-for-violation-of-primary-key-constraint-in-sql2008/520407#520407 1 Answer by Arry for Detailed error message for violation of Primary Key constraint in sql2008? Arry 2009-02-06T14:13:06Z 2009-02-06T14:13:06Z <p>The solution would depend on how often this happens. If it's &lt;10% of the time then I would do the following:</p> <ol> <li>Insert the data</li> <li>If error then do Bravax's revised solution (remove constraint, insert, find dup, report and kill dup, enable constraint).</li> </ol> <p>This means it's only costing you on the few times an error occurs.</p> <p>If this is happening more often then I'd look at sending the boys over to see the providers :-)</p>