ERROR 1062 (23000): Duplicate entry '%s' for key '%s'
16
votes
6answers
3k views
Problems with contenttypes when loading a fixture in Django
I am having trouble loading Django fixtures into my MySQL database because of contenttypes conflicts. First I tried dumping the data from only my app like this:
./manage.py dumpdata escola > ...
6
votes
6answers
6k views
MySQL Binary Log Replication: Can it be set to ignore errors?
I'm running a master-slave MySQL binary log replication system (phew!) that, for some data, is not in sync (meaning, the master holds more data than the slave). But the slave stops very frequently on ...
4
votes
4answers
390 views
MySQL ON DUPLICATE KEY insert into an audit or log table
Is there a way to accomplish this?
INSERT IGNORE INTO some_table (one,two,three) VALUES(1,2,3)
ON DUPLICATE KEY (INSERT INTO audit_table VALUES(NOW(),'Duplicate key ignored')
I really don't want to ...
4
votes
1answer
161 views
Mysql unique index does't work on a certain umlaut
I have a users table in which there's a column called 'nickname', utf-8 encoded, varchar(20), the table is in InnoDB. There're 2 records one has a nickname = 'gunni' and the other nickname = 'günni'. ...
4
votes
2answers
495 views
MySql in WinXP and Mac OS X
I am facing this bizarre problem.
I am coding on my machine in Win XP and then moving all the code to Mac OS X machine.
Running it using the jars from XP machine.
I am coding in java and using ...
4
votes
4answers
2k views
Comparing strings in PHP the same way MySQL does
I'm storing a varchar in a utf8 MySQL table and using utf8_general_ci collation. I have a unique index on the varchar. I'd like to do a string comparison in PHP that is equivalent to what MySQL will ...
4
votes
8answers
7k views
mysql duplicate entry error when there is no duplicate entry (bulk load via php)
i am using mysql (5.0.32-Debian_7etch6-log) and i've got a nightly running bulk load php (5.2.6) script (using Zend_DB (1.5.1) via PDO) which does the following:
truncating a set of 4 'import' ...
3
votes
2answers
2k views
Magento — “SQLSTATE[23000]: Integrity constraint violation..” on customer update
After migrating servers, I'm getting an error every time I try to update customer information. I'm using a customer activation plugin, but after disabling it, I still get the same error.
...
2
votes
3answers
60 views
INSERT INTO a table with UNIQUE INDEX for two columns
I have a simple tag_map table as
CREATE TABLE tag_map
(
tag_map_id mediumint(7) unsigned NOT NULL AUTO_INCREMENT,
post_id mediumint(7) unsigned REFERENCES posts(post_id),
tag_id mediumint(7) unsigned ...
2
votes
2answers
1k views
MySql can't make column auto_increment
I have a table "Bestelling" with 4 columns: "Id" (PK), "KlantId", "Datum", "BestellingsTypeId", now I want to make the column Id auto_increment, however, when I try to do that, I get this error:
...
2
votes
2answers
707 views
Converting mysql tables from latin1 to utf8
I'm trying to convert some mysql tables from latin1 to utf8. I'm using the following command, which seems to mostly work.
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
...
2
votes
4answers
271 views
Combine two columns together from separate tables
Let's say for instance:
I have two tables: old_data and new_data.
Both old_data and new_data have one column called this_is_col.
Both old_data and new_data have various (hundreds) of rows of dates ...
2
votes
1answer
486 views
IntegrityError when saving user with username=email
I have modified my application, so that when a new user is registered, it's username and email are the same. But when a new user is created, I'm getting IntegrityError : (1062, "Duplicate entry ...
1
vote
1answer
142 views
How to skip row when importing bad MySQL dump
Given bad mysqldump that causes error on import:
namtar backups # mysql -p < 2010-12-01.sql
Enter password:
ERROR 1062 (23000) at line 8020: Duplicate entry 'l�he?' for key 'wrd_txt'
Is there ...
1
vote
3answers
133 views
Display error message in php for MYSQL dublicate error
I am using UNIQUE Constraint in my table for two columns to prevent duplicate rows. If I try to insert a row with the same 2 columns I get
A Database Error Occurred Error
Number: 1062
...
1
vote
1answer
210 views
Logging query errors in MySQL
We have an application that uses several SQL queries and might at times generate the odd error.
For example, it could be a :
INSERT INTO TABLE (ID, FIELD) VALUES (1, "field value");
which would ...
1
vote
2answers
135 views
mysql unique (multiple keys )
hi guys I have attached a pic for the table structure..
The problem
I am adding a new record to db and it says its duplicated when title is different is there something wrong on the way I have ...
1
vote
2answers
252 views
MyISAM unique keys being cut off at 64 bytes, causing collisions
I've got a MySQL table that stores urls as unique keys. I'm starting to get collisions on my keys because it seems the keys themselves are only the first 64 bytes (or characters if you prefer, its a ...
1
vote
2answers
119 views
Why is this compound primary key not working as expected?
I have a table "tbl_project_user_assignment" with a compound primary key.
It is made up of project_id and user_id
Each of these are also a foreign key to the project and user tables respectively.
...
1
vote
2answers
858 views
Catching exceptions for “INSERT … ON DUPLICATE KEY UPDATE” workaround in ZF
ZF 1.9.5 here. Someone suggested catching exceptions to emulate ON DUPLICATE KEY UPDATE when using Zend_Db_Table.
Currently, I'm getting
SQLSTATE[23000]: Integrity constraint violation: 1062 ...
1
vote
3answers
727 views
Symfony doctrine i18n behavior data-load failure: Integrity constraint violation
I want tho have I18N categories table. I have followed the jobeet example.
Schema and fixtures data below.
./symfony doctrine:build --db --all-classes --and-migrate
./symfony doctrine:data-load ...
1
vote
1answer
361 views
Drupal: Duplicate entry '' for key 2 query:
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 ...
1
vote
0answers
386 views
Why am I getting duplicate key integrity errors from Django's get_or_create?
UPDATE: Found the answer here, and the suggested work-around works for me: How do I deal with this race condition in django?
Hello all. Observe the following code:
while True:
...
1
vote
1answer
105 views
parse mysql error msg - is it the right way?
In my php/MySQL code I insert new record into a table (InnoDB) which has many UNIQUE column keys. If insertion fails (with ER_DUP_ENTRY) I need to know which column's value wasn't unique.
I was told ...
1
vote
2answers
927 views
phpMyAdmin: MySQL Error 1062 - Duplicate entry
I connect with user "root" onto my database "test" which I host locally for development. Among others I have the table "ratingcomment". For some reason when I click on the table "ratingcomment" ...
1
vote
1answer
445 views
MySQL strange error in CREATE … SELECT: ERROR 1062 (23000): Duplicate entry '0' for key 1
This is the problematic query (with the intended meaning: pull all entities paired with entity 530 into a new table, with the count of the pairs):
CREATE TEMPORARY TABLE paired (
entity_id INTEGER ...
1
vote
4answers
639 views
Converting from 5.0.27 to 5.1.41, getting duplicate key errors (1062)
I have a database that's currently running on a 5.0.27 server. I want to move to a new 5.1.41 server.
I mysqldump'd all the files. When restoring, I get an error
ERROR 1062 (23000) at line 21: ...
1
vote
1answer
2k views
PHP Doctrine - Integrity constraint violation: 1062 Duplicate entry (Primary key)
I'm loading lots of User and related Group objects from a custom PDO query (using the Doctrine connection => $dbh = Doctrine_Manager::connection()->getDbh(); ). The query involves a cross join which ...
1
vote
1answer
456 views
mysql ON DUPLICATE KEY UPDATE
I'm stuck on a mySQL query using ON DUPLICATE KEY UPDATE.
I'm getting the error:
mySQL Error: 1062 - Duplicate entry 'hr2461809-3' for key 'fname'
The table looks like this:
id int(10) NOT NULL ...
1
vote
1answer
204 views
MySQL composite unique on FK's
I want to implement the following constraints in mysql:
create table TypeMapping(
...
constraint unique(server_id,type_id),
constraint foreign key(server_id) references Server(id),
...
1
vote
6answers
1k views
mySQL auto increment problem: Duplicate entry '4294967295' for key 1
I have a table of emails.
The last record in there for an auto increment id is 3780, which is a legit record. Any new record I now insert is being inserted right there.
However, in my logs I have ...
1
vote
3answers
2k views
MySQL: Duplicate Entry for Key 2
I'm not sure what I'm doing to cause this error. The query:
INSERT INTO node (type, language, title) VALUES ('bout', 'en', 'the title 3')
The error:
#1062 - Duplicate entry '0' for key 2
The ...
1
vote
3answers
159 views
Problems using GROUP BY in MySQL in a query that does a JOIN on two tables
I have two MySQL tables, $database1 and $database2. Both have a field in them called ID. I am passing the name of a town to the file using GET (i.e. it's in the URL of the PHP file that holds this ...
1
vote
1answer
2k views
Getting duplicate entry errors from Hibernate, is MySQL to blame?
I am working on a database application which is mostly read-only, but there is one table which records user movement in the app and has a large number of writes to it. For every few thousand writes, ...
1
vote
2answers
3k views
Hibernate Save strange behaviour
I have a user object that has a one-to-many relationship with String types. I believe they are simple mappings. The types table hold the associated user_id and variable type names, with a primary key ...
1
vote
2answers
527 views
MySQL UPDATE behavior
mysql> update tablename set fieldname = 'C200900674' where fieldname -
'C200900673';
ERROR 1062 (23000): Duplicate entry 'C200900674-2008-0-1' for key 1
Any thoughts or suggestions on this? We had ...
0
votes
1answer
236 views
Why am I getting a MySQL Error 1062?
On one of my php pages, I keep getting the following error:
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '0' for key 'PRIMARY'
I don't know why or where this is ...
0
votes
1answer
254 views
Django Extended User Profile Sign Up Form Returns IntegrityError
So, I'm new to Django and this has become a major headache. So I'm trying to create an extended user profile a la the documentation. However, when I attempt to post an entry through the form I ...
0
votes
3answers
455 views
JPA Inner workings. MySQLIntegrityConstraintViolationException
I'm really struggling to understand why I'm getting this error. I'm getting it referring to the GLOBAL_ID field in my Artist Entity. I think I must be missing something about how the JPA inner ...
0
votes
5answers
68 views
mysql insert error
SQL query:
INSERT INTO `website_categorization`.`category_keyword` (
`ID` ,
`ID_Category` ,
`Keyword` ,
`Score`)
VALUES (
NULL , '18', 'free mail', ''
), (
NULL , '18', 'web email free', ''
) ...
0
votes
2answers
235 views
How do I delete everything from a table, except 1 entry in MySQL?
So I have an import/export module for OpenCart, but it's wiping the entire product option table before inserting new data...
I need to develop support for the 3rd party product options module I have, ...
0
votes
1answer
418 views
MySQL Error: #1062 - Duplicate entry 'rewrite_rules' for key 2
I am trying to restore a WordPress MySQL DB from a recent backup since my site (wp-admin) became unusable after I changed the site_url incorrectly. I am trying to reinstall the entire site again but ...
0
votes
2answers
411 views
Magento sql errors
Do you have an idea about this error
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1421062-85-1-2' for key 1
it appears when trying to save a product (BO and FO)
0
votes
2answers
901 views
My SQL Replication Error(1062)
I am new to MySQL and after a long search i am able to configure master-slave ROW based replication. I thought it would be safe and I would not have to recheck it again and again.
But today when I ...
0
votes
3answers
448 views
MySQL Conditional Insert. Works in phpMyAdmin but not PHP Script
I am trying to create a conditional INSERT into my MySQL databate from a PHP script. The following SQL syntax works in phpMyAdmin, but not in my PHP Script:
INSERT INTO profiles (id, firstname)
...
0
votes
1answer
502 views
Database Error: Duplicate Entry
The Error:
A Database Error Occurred
Error Number: 1062 Duplicate entry '0' for key 1
INSERT INTO `CCI_Faculty`
(`Username`, `Password`, `LastName`, `FirstName`, `Title`, `Phone`, `Email`, ...
0
votes
1answer
303 views
DB Error when running python manage.py loaddata datadump.json
I'm migrating my Django database from sqlite to mysql. I've done the following with no problems:
python manage.py dumpdata > datadump.json
Change your settings.py to the mysql database.
But when I ...
0
votes
2answers
318 views
MySQL Duplicate entry '16777216' for key 1 Error
I have a MySQL database that is populated via a C# application, mass uploading records on the scale of 100+ million records. After these records are imported, further analysis and other scoring tools ...
0
votes
2answers
99 views
mysql duplicate record field
Is there a way to overwrite or skip duplicate records?
1062 - Duplicate entry '2' for key 1
is there a way to add : insert on duplicate key update to a sql file that only has insert?
0
votes
4answers
169 views
PHP do/while Prepared Statement failing
I have a code that is meant to run a check on my database to see if a given value is unique, and if so, insert it into the db. If it isn't unique, reiterate the process until it finds a unique value.
...