vote up 5 vote down star

I started by googling, and found this article which talks about mutex tables.

I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the record I want to insert does not already exist without using a pair of queries (ie, one query to check and one to insert is the result set is empty)?

Does a unique constraint on a field guarantee the insert will fail if it's already there?

It seems that with merely a constraint, when I issue the insert via php, the script croaks.

flag

I'll be happy to expand/clarify if the question is not worded well – warren Sep 1 at 8:59

4 Answers

vote up 6 vote down check

use INSERT IGNORE INTO table

see http://bogdan.org.ua/2007/10/18/mysql-insert-if-not-exists-syntax.html

there's also INSERT … ON DUPLICATE KEY UPDATE syntax, you can find explanations on dev.mysql.com

link|flag
that looks exactly like what i wanted to find – warren Sep 1 at 9:12
and can I combine that with "delayed" to speed the script up? – warren Sep 1 at 9:18
1  
yes, insert delayed might speed up things for you. try it out – knittl Sep 1 at 9:27
update - I did an insert ignore delay and the php script finishes much faster by offloading all of the work onto mysql; for my current purposes, this is perfect; thanks – warren Sep 1 at 14:43
great, glad to help – knittl Sep 1 at 15:29
show 1 more comment
vote up 2 vote down

on duplicate key update, or insert ignore can be viable solutions with MySQL.

link|flag
vote up 2 vote down

Any simple constraint should do the job, if an exception is acceptable. Examples :

  • primary key if not surrogate
  • unique constraint on a column
  • multi-column unique constraint

Sorry is this seems deceptively simple. I know it looks bad confronted to the link you share with us. ;-(

But I neverleless give this answer, because it seem to fill your need. (If not, it may trigger your updating your requirements, which would be "a Good Thing"(TM) also).

Edited: If an insert would break the database unique constraint, an exception is throw at the database level, relayed by the driver. It will certainly stop your script, with a failure. It must be possible in PHP to adress that case ...

link|flag
i added a clarification to the question - does your answer still apply? – warren Sep 1 at 9:12
I believe it does. A unique constraint will cause the failure of incorrect inserts. Note : you have to deal with this failure in your code, but this is quite standard. – KLE Sep 1 at 16:10
for now I'm going to stick with the solution I accepted - but will further look into handling INSERT failures etc as the app grows – warren Sep 7 at 6:47
vote up 1 vote down

Replace might work for you.

link|flag
thanks for the idea - i'd prefer to not replace 14 million records (or how many it grows to) when adding new data sources :) – warren Sep 1 at 9:11

Your Answer

Get an OpenID
or
never shown

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