run command
bin/magento migrate:data -a app/code/Vendor/Migration/etc/opensource-to-opensource/1.9.4.0/config.xml
Error migration magento 1.9.4.0 to magento2 2.3.5
Base table or view not found: 1146 Table 'magento1.customer_entity_static' doesn't exist
2
Answers
Find a module that you are installing that is using customer_entity_static table, disable it and try again.
Please check if You have custom attribute with
backend_type
==static
in youreav_attribute
table. Problem is invendor/magento/data-migration-tool/src/Migration/Step/Customer/Model/AttributesDataToCustomerEntityRecords.php
file infetchAttributesData
method. It gets$attributeIdsByType
and based ontype
magento refers to table (e.g. it refers to tablecustomer_entity_
+backend_type
(in my, and your case it is typestatic
).