View Single Post
  #5 (permalink)  
Old 25-08-04
Rich Rich is offline
Super Moderator
 
Join Date: Aug 2003
Posts: 2,451
Thanks: 0
Thanked 0 Times in 0 Posts
Rich is an unknown quantity at this point
yep! As I said it takes a lot of work, but at least lookup tables mean you only have to deal with new products and product id changes, not every product during every import.

Your look up table could be: -
Code:
MerchantID | MerchantProductID | MyCategoryID
---------------------------------------------
A          | BCDEF             | Z
B          | KLMNOP            | Z
Or even: -
Code:
MerchantID | MerchantProductID | MyProductID       MyProductID | MyCategoryID
---------------------------------------------      --------------------------
A          | BCDEF             | 1234              1234        | Z
B          | KLMNOP            | 1234
Reply With Quote