You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am migrating from EE 1.14.4.2 to Commerce 2.3.2 using the Data Migration Tool 2.3.2. Everything is processing fine until it gets to the PostProcessing step where it's failing...
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'magento2.catalog_product_entity_int' doesn't exist, query was: DELETE FROM catalog_product_entity_int WHERE (value_id IN ('535690','545428','546868','551863','551890','551899','551908','551926', ...
My (sanitized) vendor/magento/data-migration-tool/etc/commerce-to-commerce/1.14.4.2/config.xml...
I am migrating from EE 1.14.4.2 to Commerce 2.3.2 using the Data Migration Tool 2.3.2. Everything is processing fine until it gets to the PostProcessing step where it's failing...
My (sanitized) vendor/magento/data-migration-tool/etc/commerce-to-commerce/1.14.4.2/config.xml...
I believe the issue is on the line below where it's not using the table prefix for the destination...
data-migration-tool/src/Migration/Step/PostProcessing/Data/AttributeSetLeftoverDataCleaner.php
Line 69 in b582d4a
When I tested hardcoding in my prefix, it worked successfully...
$this->destination->deleteRecords('magento2_' . $document, 'value_id', $entityValueIds[$document]);
For reference, here is my open issue I posted on StackOverflow yesterday... https://magento.stackexchange.com/questions/282445/base-table-or-view-not-found-in-data-migration-tool-postprocessing-step-pref
The text was updated successfully, but these errors were encountered: