仅导入magento类别和产品表

时间:2012-04-23 04:06:21

标签: magento

我们现在有两个magento应用程序。一个(APP A)具有将在另一个magento应用程序(APP B)中使用的类别和产品数据。

由于APP B有很多新设置,如关键字,元描述等,我们不能直接使用APP A的数据库,只能使用类别和产品表。

那么有没有方法将APP A的类别和产品数据库导入APP B?非常感谢你!

2 个答案:

答案 0 :(得分:0)

您需要导出和导入类别和产品的所有数据库表

catalog_category_entity 

catalog_category_entity_datetime 

catalog_category_entity_decimal 

catalog_category_entity_int 

catalog_category_entity_text 

catalog_category_entity_varchar 

catalog_category_flat


catalog_product_entity 

catalog_product_entity_datetime 

catalog_product_entity_decimal 

catalog_product_entity_gallery 

catalog_product_entity_int 

catalog_product_entity_media_gallery 

catalog_product_entity_media_gallery_value 

catalog_product_entity_text 

catalog_product_entity_tier_price 

catalog_product_entity_varchar 

catalog_product_link 

catalog_product_link_attribute 

catalog_product_link_attribute_decimal 

catalog_product_link_attribute_int 

catalog_product_link_attribute_varchar 

catalog_product_link_type 

catalog_product_super_attribute 

catalog_product_super_attribute_label 

catalog_product_super_attribute_pricing 

catalog_product_super_link 

catalog_product_website

答案 1 :(得分:0)

这是我如何做到这一点的。我正在根据测试文件夹中建立一个新的商店,同时生产中有销售,新产品/客户以及库存变化。

您还需要获取所有mage_cataloginventory_stock表:

mage_cataloginventory_stock
mage_cataloginventory_stock_item
mage_cataloginventory_stock_status
mage_cataloginventory_stock_idx
mage_cataloginventory_stock_tmp
  • 禁用编译器和缓存,清除缓存

除了上面答案中列出的表格是正确的,在删除我的表格时(在删除时禁用外键检查,截断不能从phpmyadmin工作),这里有什么操作< / p>

  • 导入数据
  • 重新索引。

媒体(图片)与安装URL有关,因此,我正在将根目录中的生产商店移动到子目录,一切都很好。

首先返回目标数据库。