B
Bishop
I have text files that I download daily from one of our vendors. They are
in this format (and they won't change the way they do it)
File1:
ProductID, Description, Price, etc....
File2:
ProductID, QTY
Outside of loading them into a table in the DB and joining the data, does
anyone have any ideas on how to merge the two files so they look like this:
ProductID, Description, Price, QTY
The only thing I can think of is to store the ProductID and QTY in an array
or collection and loop through it for each entry.
Any suggestions appreciated.
in this format (and they won't change the way they do it)
File1:
ProductID, Description, Price, etc....
File2:
ProductID, QTY
Outside of loading them into a table in the DB and joining the data, does
anyone have any ideas on how to merge the two files so they look like this:
ProductID, Description, Price, QTY
The only thing I can think of is to store the ProductID and QTY in an array
or collection and loop through it for each entry.
Any suggestions appreciated.