Dataset merge with subset of another dataset table

  • Thread starter Thread starter moondaddy
  • Start date Start date
M

moondaddy

I'm using the dataset merge method to merge a table from one dataset to
another. Now I would like to merge just part of the table and not all of
its rows. Is this possible? Could I create a view on that table and then
merge the view to the other dataset?

Thanks in advance!
 
Hi
why don't you just create a new temp table that is the result of a select
( with your required criteria ) on the original table , they you can do the
merge on that temp table.
Mohamed Mahfouz
MEA Developer Support Center
ITworx on behalf of Microsoft EMEA GTSC
 
Back
Top