View Single Post
  #3 (permalink)  
Old 04-25-2008, 07:15 PM
jaden403 jaden403 is offline
Newbie
 
Join Date: Apr 2008
Posts: 2
Rep Power: 0
jaden403 is on a distinguished road
Default Re: Merging datasets based upon primary key

That's what I had to end up doing.

loop through ds1 rows
loop through ds2 rows
loop through ds1 columns
loop through ds2 columns
look for matching values
copy columns from ds2 in ds1

I just thought there would be an easier way to do that than using nested loops.
Reply With Quote