运行命令bin/magento migrate:data -a app/code/Vendor/Migration/etc/opensource-to-opensource/1.9.4.0/config.xml错误将magento 1.9.4.0迁移到magento2 2.3.5 Base table or view not found: 1146 Table 'magento1.customer_entity_static' doesn't exist
发布于 2021-03-12 12:02:57
找到正在使用customer_entity_static表安装的模块,将其禁用,然后重试。
发布于 2021-03-23 21:02:06
请检查您的eav_attribute表中是否具有backend_type == static的自定义属性。fetchAttributesData方法中的vendor/magento/data-migration-tool/src/Migration/Step/Customer/Model/AttributesDataToCustomerEntityRecords.php文件中存在问题。它获取$attributeIdsByType,并基于type magento引用表格(例如,它引用表格customer_entity_ + backend_type (在我的例子中,你的例子是static类型)。
https://stackoverflow.com/questions/66540406
复制相似问题