What is the maximum size of a DataTable I can load into memory in .Net?
Is there an artificial limitation, or it is only limited by the box I am running the code on
The maximum size is limited by Int32. So 2^32 is the maximum number of DataTables you can hold inside a DataSet. So the max size is 2 billion. that is approximately 4GB