SQL查询将产品的所有属性更改为“使用默认网站”

时间:2012-07-04 13:36:50

标签: sql magento

我们有很多产品在商店视图中更改了某些属性,而不使用默认网站设置。像这样:

enter image description here

我们现在需要一个脚本来将所有产品更改为此设置:

enter image description here

重要的是,这适用于所有属性,尤其是图片:

enter image description here

非常感谢任何帮助

1 个答案:

答案 0 :(得分:1)

首次备份。然后运行这个SQL:

DELETE FROM catalog_product_entity_datetime WHERE store_id > 0;
DELETE FROM catalog_product_entity_decimal WHERE store_id > 0;
DELETE FROM catalog_product_entity_gallery WHERE store_id > 0;
DELETE FROM catalog_product_entity_int WHERE store_id > 0;
DELETE FROM catalog_product_entity_media_gallery_value WHERE store_id > 0;
DELETE FROM catalog_product_entity_text WHERE store_id > 0;
DELETE FROM catalog_product_entity_varchar WHERE store_id > 0;

之后,重建所有与产品相关的索引,然后清除阻止html缓存。