1
Answer

Expanding Datatable to a Dictionary of datatables

David Smith

David Smith

12y
1.5k
1
I have a Parent Datatable that contains 4.5 records, I want to now create Dictionary of datatables from Parent Datatable until all records are process each table should have no more than the max number of records. At the end I want iterate through the dictionary of tables and export to a textfile. I am doing this becuase I am getting a system out of memory exception writing 4.5 million records to an textfile, so I now have to break up into pieces until all records are process.

any ideals?
Answers (1)
0
David Smith

David Smith

NA 1.9k 0 12y
Does this make sense below, I can split tables into a list of datatables



private List<DataTable> CloneTable(DataTable tableToClone, int countLimit)
{
    List<DataTable> tables = new List<DataTable>();
   
int count = 0;
   
DataTable copyTable = null;
   
foreach (DataRow dr in tableToClone.Rows)


    {


      if (count == 750000)
      {

        copyTable = new

        copyTable = tableToClone.Clone();


DataTable();// Clone the structure of the table.         // Add the new DataTable to the list.

        tables.Add(copyTable);

      }


      // Import the current row.

      copyTable.ImportRow(dr);

     }


   }


    return tables;
}