mysql - Error when importing CSV via MAGMI -
when try import large number of products csv file (via magmi) magento, error:
integrity constraint violation: 1048 column 'sort_order' cannot null - error on record #1
there no column or data name 'sort order' on csv file
what's causing error? how can solve it?
check table or tables data csv being imported to. there should column named sort_order
, setup such won't accept null
value.
map database table column column in csv , make sure column in csv not missing values. need have value in column in csv sort_order
column in mysql database not accept null
value.
Comments
Post a Comment