Please confirm that I'm going in the right direction with this. You have a few separate tables that tie everything together if I'm looking into this correctly.
1. dbo.Smith_Categories
2. dbo.Smith_Categories_Product
3. dbo.Smith_Products
If I were to do a mass upload I would perform the following steps.
1. Create a CSV file according to the fields found within "dbo.Smith_Products" and import into the database.
2. Create a CSV file according to the fields found within "dbo.Smith_Categories_Product" and make sure that the product ID that I created for the CSV file in step 1 is mapped to the correct category ID found within "dbo.Smith_Categories_Product" and then import.
Question: When I perform step1 will there be problems considering I'm uploading products that aren't technically mapped to a category until I import as noted in step 2? Will the products just be floating around with no categories and be fine until I do step 2? Or will everything be fine?
OR... am I entirely wrong and need more direction? ;)
Thanks!!
Patrick
Here are the fields it gives me: