Migrate Database from Magento Enterprise to Community Edition

databasemagento-enterprisemigration

I'm in the process of downgrade from Enterprise 1.14 to Community.
I have seen this post http://www.yanted.com/2014/02/21/downgrading-magento-enterprise-to-community/

What I want to do is do a fresh install of Magento Community (latest version) and use my old database from enterprise but fix it to can use it with community.

So, should I delete all the tables that start with the prefix enterprise? And also do what says in the post

DELETE FROM eav_attribute WHERE source_model LIKE 'enterprise_%';

DELETE FROM eav_attribute WHERE backend_model LIKE 'enterprise_%';

DELETE FROM eav_attribute WHERE attribute_code IN ('gift_wrapping_available', 'gift_wrapping_price');

I want to do it the cleanest but need to preserve the data.

Best Answer

In my opinion it's much easier to export the Customers, Orders, Products, and Attributes and just re upload them into the new instance with a .CSV. You can use the dataflow and/or Magmi.

Customers - Dataflow (Default magento)

Products - http://sourceforge.net/projects/magmi/

Attributes and Attribute Sets - http://wiki.magmi.org/index.php?title=Import_Attributes_%26_Attribute_Sets Addon for Magmi

Orders - https://stackoverflow.com/questions/4673529/magento-order-import-export I use this, it's paid. Just easier. However, if you need to do an import, there is other PHP scripts online for this as well.

Run Index once you have your DNS, Magento Installation, and New DB Setup and Indexing should fix you URLs as well.

For Modules, that can be a little harder and you would have to fight that 1 battle at a time as you are likely to run into a lot of conflicts.

Best of Luck!

Related Topic