vote up 0 vote down star
1

Hello everyone,

I am using VSTS 2008 + C# + .Net 3.5 + SQL Server 2008 + ADO.Net. If I load a table from a database by using a DataTable of ADO.Net, and in the database table, I defined a couple of indexes on the table. My question is, whether on the ADO.Net DataTable, there is related index (the same as the indexes I created on physical database table) to improve certain operation performance on DataTable?

thanks in advance, George

flag

44% accept rate

3 Answers

vote up 2 vote down check

George,

The answer is no.

Actually, some sort of indexing may be used internally, but only as an implementation detail. For instance, if you create a foreign key constraint, maybe that's assisted by an index. But it doesn't matter to a developer.

link|flag
1  
George, why in the world do you think that you need to improve performance? – John Saunders Jul 10 at 14:22
1  
It means it's a bad question, George. You're assuming too much and wasting your time in the process. DataSet/DataTable are meant to be a disconnected, in-memory structure that matches the model of a relational database. That's the model, George, not the implementation, which is what an index is. So, no, don't worry about performance problems before they happen, or you'll find you've worried about the wrong problems. And don't worry about performance problems with DataTable. – John Saunders Jul 10 at 17:59
1  
BTW, is this you: social.msdn.microsoft.com/Forums/en-US/… – John Saunders Jul 10 at 18:06
1  
George, my advice is to spend no more thought about performace issues with DataTable or anything else until you discover a performance issue. Certainly, I do not intend to spend any more thought on the subject. – John Saunders Jul 11 at 11:34
1  
George, optimize what? Do you have a performance problem? Also, you seem to think that DataTable is an in-memory database. It is not. There is no optimization. There is nothing to optimize. – John Saunders Jul 11 at 13:27
show 5 more comments
vote up 1 vote down

Others have made the point that a DataSet is not intended to serve as a database system--just a representation of data. If you are working under the impression that a DataSet is a database then you are mistaken and might need to reconsider your implementation.

If you need a client-side database, consider using SQL Compact or SQL Lite, both are free redistributable Database systems which can be used without requiring seperate installations or services. If you need something more full-featured the SQL Express is the next step up.

To help clarify though, DataSets/Tables are used in .NET development to temporarily hold data as needed. Think of them as the results of a SELECT query against a database; they are roughly similar to CSV files or other forms of tabular data--you can pull data into them from a database, work with the data, and then push the changes back to a database--but they, on their own, are not databases.

If you have a large collection of items which you need to keep in memory for one reason or another then you might consider building a lightweight DTO (data transfer object, google it, they're very simple) and loading them into a HashTable. HashTables won't give you any form of relational data, but are very efficient at lookups.

link|flag
Thanks John and Yoooder, I am thinking of why I am confused before. I think even if DataTable's initial values are retrieved from a SELECT from database normally, but we can issue select on the DataTable to get sub-set of data from DataTable, and it is why I am confused before and it is why I think when I issue SELECT on DataTable, maybe I need to create index to facilitate query performance, any comments? – George2 Jul 21 at 4:33
vote up 1 vote down

John above is correct. DataTables are disconnected in memory structures. They do not map to the physical implementation of the database.

The indexes on disk are used to speed up lookups because you don't have all the rows. If you have to load every row and scan them it is slow, so an index makes sense. In a DataTable you already have all the rows, so a comparison is fast already.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.