Performance issue: Update a particular column in large DataTable

  • Thread starter Thread starter Ajit Kumar Goel
  • Start date Start date
A

Ajit Kumar Goel

Hi;

I have a huge datatable consisting of approximately 1500 rows. Each
Row has approximately 30 columns. At the end of a operation, I update
a particular column for all the rows in the datatable. However this
takes a lot of time. (Approximately 40 seconds).

How do I go about reducing this time??.Any suggestions are welcome.

Kind Regards;

Ajit Goel
 
Try wrapping your update into BeginLoadData/EndLoadData. Keep in mind that
this can have side-effects
 
Back
Top