How to fix DUPLICATE SQl QUERy INTEGRITY CONSTRAINT Violations

Magento 2 – Integrity constraint violation: Duplicate entry

What the issue is and how to fix it with one SQL query

Integrity constraint violation: 1062 Duplicate entry ‘2926334’ for key ‘PRIMARY’, query was: ALTER TABLE `catalog_url_rewrite_product_category` ADD CONSTRAINT PRIMARY KEY

Upon trying to run bin/magento setup:upgrade on a new instance of an existing Magento 2 project I recently ran into the following error:

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry ‘27698’ for key ‘catalog_url_rewrite_product_category.PRIMARY’, query was: ALTER TABLE `catalog_url_rewrite_product_category` ADD CONSTRAINT PRIMARY KEY (`url_rewrite_id`)

As the error message suggests, the reason for this error is that you have a duplicate entry within a database table. These may be caused by entirely duplicated rows or they may just share the same primary key.

To resolve this you can manually work through the database table and remove the duplicate rows or you can run the following SQL script:

DELETE t1.* FROM catalog_url_rewrite_product_category t1 INNER JOIN (SELECT url_rewrite_id FROM catalog_url_rewrite_product_category GROUP BY url_rewrite_id HAVING COUNT(*)>1) t2 ON t1.url_rewrite_id = t2.url_rewrite_id

Be sure to replace all occurrences of “catalog_url_rewrite_product_category” and “url_rewrite_id” with the correct table and column name respectively.

If you have a Magento 2 site and need support get in touch with us

[]
1 Step 1
keyboard_arrow_leftPrevious
Nextkeyboard_arrow_right