I have a transaction that contains multiple SQL Statements (INSERT, UPDATE and/or DELETES). When executing, I want to ignore Duplicate Error statements and continue onto the next statement. What's the best way of doing that?
|
Although my emphatic advice to you is to structure your sql so as to not attempt duplicate inserts (Philip Kelley's snippet is probably what you need), I want to mention that an error on a statement doesn't necessarily cause a rollback. Unless For example, the following sql successfully inserts three values into the table:
Unless you're setting |
|||
|
|
|
I think you are looking for the IGNORE_DUP_KEY option on your index. Have a look at http://sqlkit.com/2009/06/17/ for an explanation. |
|||||||||||||||||
|
|
Expanding on your comment to SquareCog's reply, you could do:
Here, I assume that column Y is present in all three tables. Note that performance will be poor if the tables are not indexed on Y. Oh yeah, Y has a unique constraint on it--so they're indexed, and this should perform optimally. |
|||||||||
|
|
If by "Ignore Duplicate Error statments", to abort the current statement and continue to the next statement without aborting the trnsaction then just put BEGIN TRY.. END TRY around each statement:
|
|||
|
|
OK. After trying out some error handling, I figured out how to solve the issue I was having. Here's an example of how to make this work (let me know if there's something I'm missing) :
As a result of the above Transaction, Table1 will have the following values Value1, Value2. 2627 is the error code for Duplicate Key by the way. Thank you all for the prompt reply and helpful suggestions. |
||||
|
|
|
I'd like to chime in with the following: If 99% of your data is going to insert without error doing a select beforehand results in a huge performance drop (like, in my case, from 200 lines/sec to 20 lines/sec in my case) compared to "dumb" inserts and catching the occasional error. After ignoring the "Violation of PRIMARY KEY constraint" errors things went back to being bottlenecked by other resources (headroom being defined as "what the bottlenecking resources don't have"). Which is the whole reason I landed on this discussion in the first place. |
|||
|
|
This tells the Server to look for the same data (hopefully the same speedy way it does to check for duplicate keys) and insert nothing if it finds it. I like the IGNORE_DUP_KEY solution too, but then anyone who relies on errors to catch problems will be mystified when the server silently ignores their dupe-key errors. The reason I choose this over Philip Kelley's solution is that you can provide several rows of data and only have the missing ones actually get in: |
|||
|
|
|
Keys must be unique. Don't do that. Redesign as needed. (if you are trying to insert, then delete, and the insert fails... just do the delete first. Rollback on error in either statement). |
|||
|