Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

data migration > EAV Step error #10

Closed
Vincenkt opened this issue Dec 4, 2015 · 4 comments
Closed

data migration > EAV Step error #10

Vincenkt opened this issue Dec 4, 2015 · 4 comments

Comments

@Vincenkt
Copy link

Vincenkt commented Dec 4, 2015

Anyone having this issue?
( data migration > EAV Step)
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1-Migration_Default' for key 'EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME'

@txwireless
Copy link

I ran into this. If this is the error I recall, it was some source_models that didn't exist in my destination db. I ran the following for each of the troublesome ones as I recall.
update eav_attribute set source_model=NULL where source_model='mana_filters/source_filterable';
update eav_attribute set source_model=NULL where source_model='mana_filters/source_display';
... etc...

@surfer190
Copy link

Run this on the magento 2 site (That has migrated data already presumably):

DELETE FROM eav_attribute_set WHERE attribute_set_name != 'Default';

@dfelton
Copy link
Contributor

dfelton commented Feb 8, 2017

@surfer190 This is not a good recommendation.

@schizek
Copy link

schizek commented Jul 10, 2019

I know this is already closed, but just for clarification in case anyone else has this same issue. This particular one appears caused by an old extension that has since been removed which I believe was Mana_Filters https://www.manadev.com/advanced-layered-navigation-ce

The leftover data in the DB will need to be manually removed to clean it out of the system.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants