-
Notifications
You must be signed in to change notification settings - Fork 197
Undefined offset: 141 in /vendor/magento/data-migration-tool/src/Migration/Step/Eav/Data.php on line 813 #599
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
Comments
Hi @routbiplab This line 819? It points to curly bracket |
My bad. It should be 813 |
In the case if somebody is looking for solution. There is a record with The solution is to simply delete record with |
Hi @bohdanchumak |
Hi @victor-v-rad |
I'm just posting in case anyone else encounters this issue:
I encountered this error when I had orphaned records in I was able to correct the issue by running the following queries on my destination database: USE destination;
SET SQL_SAFE_UPDATES = 0;
DELETE FROM catalog_eav_attribute WHERE attribute_id NOT IN (SELECT attribute_id FROM eav_attribute);
DELETE FROM eav_entity_attribute WHERE attribute_id NOT IN (SELECT attribute_id FROM eav_attribute);
SET SQL_SAFE_UPDATES = 1; |
Preconditions
Steps to reproduce
Expected result
Actual result
The text was updated successfully, but these errors were encountered: