Forum Moderators: open
I have a DB table with about 10,000 rows, call it "products"-- I populate this table with a datafeed from the vendor. However, the vendor, in their wisdom, has declined to add discontinued items to the feed, so there's no real way for me to know what products should be "live" and which ones need to be delisted, short of comparing the latest feed with the products table and deleting items from products that are not in the feed.
I've thought of a few ways to attack this, from writing out the feed ID's into a temp table, to dumping the feed into a text file, but I'm curious if someone knows the best practice for this scenario.
Thanks!
With use of a temporary table, this looks like:
Thanks for your response.