-
Notifications
You must be signed in to change notification settings - Fork 197
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
Column not found: 1054 Unknown column 'main.entity_id' in 'field list' after successfully migrating data from EE 1.12.0.2 to EE 2.1.1 #207
Comments
When check report log at that time display below error,
|
Hi @RJesadiya |
Hi, @victor-v-rad
|
Look at the similar issue #208 |
@RakeshJesadiya : This will help you: You have orphaned records in your database. This can occur when records have sometime in the past been deleted while Foreign Key checks are disabled. When this is done improperly, it will potentially leave unwanted left over data in the database. These queries will remove this orphaned data from your DB:
The very last line of your error report above is cut off. So I was unable to provide a query for that error. Let me know if you want further help. Thank you. |
Hello,
I have migrated data from Magento EE 1.12.0.2 to EE 2.1.1.
I have multi store website English and Arabic Language.
Migration are successfully for data of old magento 1 to latest magento 2 version.
In admin panel Its display all store view with different language translation and all customer, Proudct,Order data.
But when i have checked in frontend its not working and display error like below,
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'main.entity_id' in 'field list', query was: SELECT
main.
entity_idFROM
catalog_product_entity_intAS
mainINNER JOIN
storeON main.store_id=store.store_id WHERE (main.attribute_id = '175') AND (store.website_id IN(0, '1')) AND (main.value = '85') AND (main.entity_id IN('2383', '1126', '1172', '2872', '1126', '1172', '2845', '1126', '1172', '2258', '1126', '1172', '2799', '1126', '1172', '2741', '1126', '1172', '4185', '1126', '1172', '3736', '1126', '1172', '2741', '1126'))
I am not sure why this issue are display in frontend page.
Any hint for resolve this issue after migration completed.
Thanks.
The text was updated successfully, but these errors were encountered: