- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Migration Issue
Hi,
I'm doing migration only for Customers and Orders from M1.9 but CMS Pages, Core Config data table all getting updating also these tables all mentioned on ignore list but dont know how this all updating? Please let me know.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Migration Issue
Hi @gkarthick87
Please follow steps given by below URL Green Mark solution:
https://magento.stackexchange.com/questions/268804/magento-2-migrate-only-customer-and-orders
Hope it may help you!
Problem Solved! Click Kudos & Accept as a Solution!
Problem Solved! Click Kudos & Accept as Solution!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Migration Issue
I already followed the information. When I follow this steps core config data and cms block tables also get migrated. Please understand I want to migrate only customers and orders table. Give me solution for that.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Migration Issue
Hi @gkarthick87
The directory structure that you have Magento version path
data-migration-tool/etc/opensource-to-opensource/1.9.x.x/map.xml.dist
Rename this file to map.xml.dist to map.xml
In config.xml file update, the map.xml file path map.xml.dist to map.xml
In Your map.xml File, Add table which you want to Ignore under the source document_rules
<source> <document_rules> <ignore> <document>cms_block</document> </ignore> <ignore> <document>cms_block_store</document> </ignore> <ignore> <document>cms_page</document> </ignore> <ignore> <document>cms_page_store</document> </ignore> <ignore> <document>core_config_data</document> </ignore> </document_rules> </source>
Hope it may help you!
Problem Solved! Click Kudos & Accept as a Solution!
Problem Solved! Click Kudos & Accept as Solution!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Migration Issue
I already added this on source and destination but nothing is worked. What about other fields like "transform", "move"? It should be needed?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Migration Issue
Hi @gkarthick87
If you are adding these with the ignore tag then it should not import in the database table.
I would suggest to you that try to upgrade again with the fresh database with all these settings.
Problem Solved! Click Kudos & Accept as Solution!