I combine different .xls/.xlsx/.csv
files into one tab delimited text file and these files have different / common columns. These files can be huge and a lot in number.
So i make a test scenario and take 15 of these input files which make up a Text Delimited file of approx 6 gb. And i want to save this file as .xlsx sheet.
So i load the text file using a class i googled online TextToDataSet
. It worked nicely with small files but now with 6gb file it crashes instantly which reading it.
And if some how i succeed in reading the text file i use EPPlus
to export DataTable
to Excel.
How to solve this issue, Am i doing it all wrong . What is a better approach?