Re: Limit in Dataset?
From: Val Mazur (group51a_at_hotmail.com)
Date: 11/09/04
- Next message: Val Mazur: "Re: howto: use 'non sqlxml' xml returned by sql in dataset/reader or s"
- Previous message: Nathan: "Re: ExecuteNonQuery() - Bach SQL Statement execution?"
- In reply to: LJ: "Limit in Dataset?"
- Next in thread: Sahil Malik: "Re: Limit in Dataset?"
- Reply: Sahil Malik: "Re: Limit in Dataset?"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 9 Nov 2004 18:58:26 -0500
Hi,
I believe DataTable could hold up to 2,147,483,648 rows. I have a dataset
with 80,000 rows in it and it works fine. It does not mean it is a good idea
to load dataset with the whole table from the database, but in some case
(like mine) you need to load data from the XML file, not from the database
and you will be able to load big dataset. Performance depends on a design of
the application. If you retrieve data from the database, then try to select
only rows, which you really need. If you have loaded big DataSet, then it
works pretty fast even with thousands rows in it. From my personal
experience I was able to write code, which joined DataTable in a DataSet
and it produces around 3,500,000 joined rows in approx 40 seconds.
-- Val Mazur Microsoft MVP "LJ" <LJ@discussions.microsoft.com> wrote in message news:82397EA5-BC8E-46DE-8BEB-F53047C7CE09@microsoft.com... > Hi, > Could somebody tell me whether there is a limit in the no. of records that > a > Dataset/Dataset tables can handle? I read in a book that Dataset is not a > good option if you have more than 200 records. > > Thanks > LJ
- Next message: Val Mazur: "Re: howto: use 'non sqlxml' xml returned by sql in dataset/reader or s"
- Previous message: Nathan: "Re: ExecuteNonQuery() - Bach SQL Statement execution?"
- In reply to: LJ: "Limit in Dataset?"
- Next in thread: Sahil Malik: "Re: Limit in Dataset?"
- Reply: Sahil Malik: "Re: Limit in Dataset?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|