
Loading tables from a database via SQLDataAdapter and SQLDataAdapter.Fill
Two thoughts spring to mind.
Firstly, is it absolutely essential that you load 2.5 million records at
once!!!!? Remember, you can only see what you load, and I doubt many people
would want to have 2.5 million records in front of them. Can you not load
the data based on a criteria?
Secondly, have you thought about loading the information using paging
techniques?
Quote:
> Hello,
> I am loading a HUGE table from a database that has about 2.5 million
> rows of data. I am using the SQLConnection,SQLDataAdapter and
> SQLDataAdapter.Fill commands to get the data and "download" it. It
> seems to take A HUGE amount of time that I am hoping can be shortened.
> Is there any way in VB.Net to connect to a database other than this
> that might be quicker? Just to give you some specs on the machine I am
> using, it is a P2 350 MHz Dell with 256 MB of RAM, and I am connecting
> to an SQL Server Database using VB.Net.
> Thanks,
> Jay