How does your table look like?
Did you try pre-create the table without any key?
--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development
www.rthand.com
Blog:
http://cs.rthand.com/blogs/blog_with_righthand/
"paul" <(E-Mail Removed)> wrote in message
news:BDAA602B-4FB6-4207-BF71-(E-Mail Removed)...
> Let's say I want a read-only copy of a simple query that joins 2 tables.
> When
> I compare a DataTable (adapter.fill) and a custom List + DataReader, I see
> that the custom sol'n is about 6x faster and takes 5x less memory. For my
> test I read about 100K rows and then bind to a grid so the timing takes
> into
> account both getting the data and binding the data. From profiling the app
> I
> see one thing that really stands out - the internal DataTable routine to
> build the (default?) index takes up most of the time - it clearly is doing
> linear scans of a red-black tree and the hit count for traversing parts of
> the tree ending up in the 100's of millions. Can I give the DataTable some
> hint (via a property) to tell it not to perform this extra work? In the
> end I
> may go w/ a custom sol'n but I first want to check if the built in classes
> can solve my problem.
>
> btw, this is .net 2.0, c#, and I'm just setting the datasource w/out any
> other binding code.
>
> thanks,
> Paul.