Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
27k views

Mysql error 1452 - Cannot add or update a child row: a foreign key constraint fails

I'm having a bit of a strange problem, I'm trying to add a foreign key to one table that references another, but it is failing for some reason. With my limited knowledge of MySQL, the only thing that ...
3
votes
1answer
727 views

Handling database integrity

I'm introducing database integrity using innodb constraints in the next version of my application. Everything goes well, but some of my tables have records with deleted references (dead records) and ...
2
votes
3answers
119 views

mysql - what does this error mean?

I do not require this error to be solved. I just need to understand what it means so I can approach it myself. Cannot add or update a child row: a foreign key constraint fails (`db`.`transaction`, ...
1
vote
3answers
1k views

Why 'foreign key constraint fails' when foreign key exists?

I have a simple query UPDATE `t_timecard_detail` SET `timeoff_request_id` = 'adad8e0d-c22b-41c3-a460-6cf982729299' WHERE `id` = 'cfc7a0a1-4e03-46a4-af89-069a0661cf55'; which gives this error ...
1
vote
2answers
212 views

Creating a foreign key in MySQL produces error:

I'm trying to create a foreign key on a table in MySQL and I'm getting a strange error that there seems to be little info about in any of my searches. I'm creating the key with this (emitted from ...
0
votes
1answer
100 views

MySQL Error 1452 - can't insert data

I am inserting some data into the following MySQL tables: CREATE TABLE genotype ( Genotype VARCHAR(20), Fitness FLOAT NULL, Tally INT NULL, PRIMARY KEY (Genotype) )ENGINE=InnoDB; CREATE TABLE gene ...
0
votes
1answer
213 views

Foreign key constraint error 1452 in MySQL

i am trying to import a sql dump of magento along with some product data and i get this foreign key constraint error: `ERROR 1452 (23000) at line 231680: Cannot add or update a child row: a foreign ...
0
votes
1answer
65 views

Trying to Run a stored procedure in mySQL and it fails on a foreign key constraint

I wrote a simple Stored Procedure with a while loop that's not working. Here's some data for you: the parent table is data_client_id. The tables are all innoDB. The primary key is ID. All other ...
0
votes
0answers
33 views

CiviCRM error when trying to update contact

I am trying to update an Individual contact and every time I submit the edits, I get an error Database Error Code: Cannot add or update a child row: a foreign key constraint fails ...