Forked from americkson/gist:17c1ffaeafa4a41eccef
Last active
February 16, 2016 02:40
-
-
Save molotovbliss/ab96de0ab5f208c1434e to your computer and use it in GitHub Desktop.
Magento Enterprise 1.14 Clear Product Data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET FOREIGN_KEY_CHECKS = 0; | |
TRUNCATE TABLE `catalog_product_bundle_option`; | |
TRUNCATE TABLE `catalog_product_bundle_option_value`; | |
TRUNCATE TABLE `catalog_product_bundle_price_index`; | |
TRUNCATE TABLE `catalog_product_bundle_selection`; | |
TRUNCATE TABLE `catalog_product_bundle_selection_price`; | |
TRUNCATE TABLE `catalog_product_bundle_stock_index`; | |
TRUNCATE TABLE `catalog_product_entity_datetime`; | |
TRUNCATE TABLE `catalog_product_entity_decimal`; | |
TRUNCATE TABLE `catalog_product_entity_gallery`; | |
TRUNCATE TABLE `catalog_product_entity_group_price`; | |
TRUNCATE TABLE `catalog_product_entity_int`; | |
TRUNCATE TABLE `catalog_product_entity_media_gallery`; | |
TRUNCATE TABLE `catalog_product_entity_media_gallery_value`; | |
TRUNCATE TABLE `catalog_product_entity_text`; | |
TRUNCATE TABLE `catalog_product_entity_tier_price`; | |
TRUNCATE TABLE `catalog_product_entity_url_key`; | |
TRUNCATE TABLE `catalog_product_entity_varchar`; | |
TRUNCATE TABLE `catalog_product_link`; | |
TRUNCATE TABLE `catalog_product_link_attribute`; | |
TRUNCATE TABLE `catalog_product_link_attribute_decimal`; | |
TRUNCATE TABLE `catalog_product_link_attribute_int`; | |
TRUNCATE TABLE `catalog_product_link_attribute_varchar`; | |
TRUNCATE TABLE `catalog_product_link_type`; | |
TRUNCATE TABLE `catalog_product_option`; | |
TRUNCATE TABLE `catalog_product_option_price`; | |
TRUNCATE TABLE `catalog_product_option_title`; | |
TRUNCATE TABLE `catalog_product_option_type_price`; | |
TRUNCATE TABLE `catalog_product_option_type_title`; | |
TRUNCATE TABLE `catalog_product_option_type_value`; | |
TRUNCATE TABLE `catalog_product_super_attribute`; | |
TRUNCATE TABLE `catalog_product_super_attribute_label`; | |
TRUNCATE TABLE `catalog_product_super_attribute_pricing`; | |
TRUNCATE TABLE `catalog_product_super_link`; | |
TRUNCATE TABLE `catalog_product_enabled_index`; | |
TRUNCATE TABLE `catalog_product_website`; | |
TRUNCATE TABLE `core_url_rewrite`; | |
TRUNCATE TABLE `enterprise_catalog_category_rewrite`; | |
TRUNCATE TABLE `enterprise_catalog_product_rewrite`; | |
TRUNCATE TABLE `enterprise_url_rewrite`; | |
TRUNCATE TABLE `enterprise_url_rewrite_category_cl`; | |
TRUNCATE TABLE `enterprise_url_rewrite_product_cl`; | |
TRUNCATE TABLE `enterprise_url_rewrite_redirect_cl`; | |
TRUNCATE TABLE `enterprise_url_rewrite_redirect_rewrite`; | |
TRUNCATE TABLE `catalog_product_entity`; | |
TRUNCATE TABLE `cataloginventory_stock`; | |
TRUNCATE TABLE `cataloginventory_stock_item`; | |
TRUNCATE TABLE `cataloginventory_stock_status`; | |
INSERT INTO `catalog_product_link_type` VALUES(1, 'relation'); | |
INSERT INTO `catalog_product_link_type` VALUES(3, 'super'); | |
INSERT INTO `catalog_product_link_type` VALUES(4, 'up_sell'); | |
INSERT INTO `catalog_product_link_type` VALUES(5, 'cross_sell'); | |
INSERT INTO `catalog_product_link_attribute` VALUES(1, 1, 'position', 'int'); | |
INSERT INTO `catalog_product_link_attribute` VALUES(2, 3, 'position', 'int'); | |
INSERT INTO `catalog_product_link_attribute` VALUES(3, 3, 'qty', 'decimal'); | |
INSERT INTO `catalog_product_link_attribute` VALUES(4, 4, 'position', 'int'); | |
INSERT INTO `catalog_product_link_attribute` VALUES(5, 5, 'position', 'int'); | |
INSERT INTO `cataloginventory_stock` VALUES(1, 'Default'); | |
# Delete all color option values (attribute 80 default) | |
DELETE ov.*, o.* | |
FROM mgn_eav_attribute_option_value AS ov | |
JOIN mgn_eav_attribute_option AS o | |
ON o.option_id = ov.option_id | |
WHERE o.attribute_id = 80 AND o.option_id = ov.option_id; | |
SET FOREIGN_KEY_CHECKS = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment