P.S. Please let me know if this is in the wrong group.
> I have some tables from a proprietary ODBC source that I read into Datasets.
> Because of limitations on this source, only a single LEFT JOIN can be used at
[quoted text clipped - 6 lines]
> the program run way too slow. Right now it's at 30 minutes, and I need it
> under 5.
hmmm, regular loops would work but that's kinda tedious. If your database
supports it, you should do it by creating a temp table or a sub query. That
would give you the joined dataset. If the dataset does not support it, you
can create a temporary dataset and merge the two datasets into one using
filters. That's a lot of work though.

Signature
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
> P.S. Please let me know if this is in the wrong group.
>
[quoted text clipped - 13 lines]
>> the program run way too slow. Right now it's at 30 minutes, and I need it
>> under 5.