【发布时间】:2015-09-03 18:49:43
【问题描述】:
我正在尝试通过 csv 文件在 magento 中导入产品。
导入文件时出现此错误。
请建议我如何解决此错误
我收到以下错误
SQLSTATE[23000]: **Integrity constraint violation: 1452** Cannot add or update a child row: a foreign key constraint fails
(`cataloginventory_stock_item`, CONSTRAINT
`FK_CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY
(`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE
CA)
【问题讨论】:
-
错误很明显,您的 CSV 有一个产品 ID,它不在 catalog_product_entity 表中。请检查
标签: magento database-integrity