We had to import some data into SQL Server, but we ran into data exception
problems with "wierd" data. So, we needed a simple way to view the data.
Since there were over 256 columns, we could not use Microsoft Access for
this.
What to do? What to do?
I know. We will load it into a dataset and bind a grid to it to see what we
were dealing with.
Worked great.
By the way, the number of rows exceeded 2,000,000. Not bad for a six year
old cheap desktop with 256 megs of memory and .NET 1.1. Microsoft obviously
did something very clever under the hood.
"Lubomir" <(E-Mail Removed)> wrote in message
news:BC7B74E6-687A-4D06-B09B-(E-Mail Removed)...
> Hi,
> Thanks for answers.
>
> Yes, we are using filters to fetch the data from database. However we are
> concerned that when database will be loaded with real data, the amount of
> fetched records will be too big down the road.
>
> Maybe we are too much worried on the other hand. What I was looking for is
> to get the picture about the size of the DataTable used by other, more
> experienced database developers.
>
> In our case I think the disconnected datatable will not have more than 100
> 000 records with 8-10 columns - in teh worst scenario. Most probably it
> will
> be much less.
>
> Regards,
> Lubomir
>
>
>
> "Miha Markic" wrote:
>
>> As Cor said, you should load only data you need for a certain process,
>> process it and store it back. There is no need to keep enormous amounts
>> of
>> data in DataSet.
>> --
>> 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/
>>
>>