I have a script that is programatically creating users on the fly to sync with an old database. It's been puring along quite nicely for a while. Now all of the sudden It started erroring out with a duplicate key error when trying to insert a user. the exact error is:

Duplicate entry 'user@email.com' for key 2 query: INSERT INTO users (name, mail, status, pass, created).....

And I can replicate this error directly from the mysql console if i try the query there. So this is where the issue gets weird. the entry 'user@email.com' does not exist in the user table any where. Thus I am perplexed at how it is generating a duplicate entry error since there is no record in the database with this email address.

here is a direct copy/paste of the mysql console..sensitive data has been changed to protect the user

mysql> INSERT INTO users (name, mail, status, pass, created) VALUES ('username', 'user@email.com', 1, 'encryptedpassword', 1294946026);

ERROR 1062 (23000): Duplicate entry 'user@email.com' for key 2

mysql> select * from users where mail='user@email.com';

Empty set (0.00 sec)

link|improve this question
Are there any constraints/trigger/... that may do something in the background? – DrColossos Jan 13 '11 at 22:15
Can you post the table definition? – ypercube Jun 18 '11 at 15:56
And the version of MySQL that is used? It could be a bug that is fixed in recent versions. – ypercube Jun 18 '11 at 15:57
feedback

1 Answer

  • Export the table and recreate it locally and try the insert again.
  • Maybe there's an encoding issue? Try search for all users with the same domain to see if there are similar entries.
  • Use the Devel module's query table to see what's actually happening within Drupal as well.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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