Click here to Skip to main content
15,889,484 members
Home / Discussions / Database
   

Database

 
QuestionUpdate Pin
Illegal Operation21-Sep-05 2:29
Illegal Operation21-Sep-05 2:29 
AnswerRe: Update Pin
Christian Graus21-Sep-05 15:39
protectorChristian Graus21-Sep-05 15:39 
QuestionExpression column in a Datatable not evaluating Pin
convergence21-Sep-05 0:22
convergence21-Sep-05 0:22 
AnswerRe: Expression column in a Datatable not evaluating Pin
sreejith ss nair21-Sep-05 0:49
sreejith ss nair21-Sep-05 0:49 
GeneralRe: Expression column in a Datatable not evaluating Pin
convergence21-Sep-05 2:36
convergence21-Sep-05 2:36 
GeneralThe Solution Pin
convergence21-Sep-05 17:08
convergence21-Sep-05 17:08 
Questiondataset size limits... Pin
l a u r e n20-Sep-05 18:54
l a u r e n20-Sep-05 18:54 
AnswerRe: dataset size limits... Pin
Andy Brummer20-Sep-05 19:46
sitebuilderAndy Brummer20-Sep-05 19:46 
It is limited by the amount of memory it can allocate through .net. I've seen datasets with 300,000 rows lockup processes on servers with 4Gigs of memory. The asp.net process only hit 1.5GB before the admins shut it down, but it wasn't doing anything other then paging at that point.

DataSets are not the most efficient structure on the planet. They have lots and lots of features and it shows. It appears they use roughly an object per cell and sometimes more if you keep track of changes to the data. They do serialize to xml well. Just don't expect them to load schemas fast. I just did a profile of a simple database application using typed datasets and 25% of the time was spent in the DataSet.LoadXml method, which was longer then the time spent actually getting data from the database. D'Oh! | :doh:

It should be easy to code, just don't expect it to be blazing fast.


I can imagine the sinking feeling one would have after ordering my book,
only to find a laughably ridiculous theory with demented logic once the book arrives - Mark McCutcheon

Questionxml schemas... Pin
l a u r e n20-Sep-05 17:11
l a u r e n20-Sep-05 17:11 
AnswerRe: xml schemas... Pin
Andy Brummer20-Sep-05 19:54
sitebuilderAndy Brummer20-Sep-05 19:54 
QuestionBest practices for user defined fields Pin
econner20-Sep-05 16:42
econner20-Sep-05 16:42 
AnswerRe: Best practices for user defined fields Pin
Edbert P20-Sep-05 18:27
Edbert P20-Sep-05 18:27 
AnswerRe: Best practices for user defined fields Pin
Andy Brummer20-Sep-05 20:01
sitebuilderAndy Brummer20-Sep-05 20:01 
QuestionDatabound ComboBox Selection Problems Pin
Glenn E. Lanier II20-Sep-05 15:33
Glenn E. Lanier II20-Sep-05 15:33 
AnswerRe: Databound ComboBox Selection Problems Pin
sreejith ss nair22-Sep-05 1:06
sreejith ss nair22-Sep-05 1:06 
AnswerRe: Databound ComboBox Selection Problems Pin
Glenn E. Lanier II2-Mar-06 8:36
Glenn E. Lanier II2-Mar-06 8:36 
AnswerRe: Databound ComboBox Selection Problems Pin
miah alom22-Sep-05 3:23
miah alom22-Sep-05 3:23 
QuestionSelecting distinct values Pin
Filipe Peixinho20-Sep-05 12:28
Filipe Peixinho20-Sep-05 12:28 
AnswerRe: Selecting distinct values Pin
enjoycrack20-Sep-05 17:17
enjoycrack20-Sep-05 17:17 
GeneralRe: Selecting distinct values Pin
Filipe Peixinho21-Sep-05 0:55
Filipe Peixinho21-Sep-05 0:55 
GeneralRe: Selecting distinct values Pin
enjoycrack21-Sep-05 0:57
enjoycrack21-Sep-05 0:57 
GeneralRe: Selecting distinct values Pin
Filipe Peixinho21-Sep-05 1:12
Filipe Peixinho21-Sep-05 1:12 
GeneralRe: Selecting distinct values Pin
enjoycrack21-Sep-05 1:17
enjoycrack21-Sep-05 1:17 
GeneralRe: Selecting distinct values Pin
Filipe Peixinho21-Sep-05 1:38
Filipe Peixinho21-Sep-05 1:38 
GeneralRe: Selecting distinct values Pin
enjoycrack21-Sep-05 2:01
enjoycrack21-Sep-05 2:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.