I have a xls file that i wish to import into an existing table. the xls file holds the cols OF: Item Lot tagNumber, and Qty. what i would like to do is import this file via a DTS package. but i have to run each one of these fields in this file through a data scrubber first (which is a sproc i created.)
my question is this. how can i import the data from the xls file and run each row through my sproc and put the resulting set in the correct table? cause my sproc can only take one field at a time?
example of what i would like to do
exec MySPROC (select Item, Lot, tagNumber, Qty from my xlsFile)
my question is this. how can i import the data from the xls file and run each row through my sproc and put the resulting set in the correct table? cause my sproc can only take one field at a time?
example of what i would like to do
exec MySPROC (select Item, Lot, tagNumber, Qty from my xlsFile)