Please help me solve this problem. I was trying to merge several .csv files by read them to memory and merge to a data table. However, it always stops after 4.6 million rows already merged. Am I already meet the maximum number of Datatable rows? I need your suggestion.
Thanks for the reply,
I have already implemented the suggestion by reading the .csv file in smaller chunks. But, the job always stopped and got an error when it came to the merging process until met some point of row count (in my case the job stopped after reading 4.6 million rows).
Thanks for your reply. I agree with you, after checking UiPath documentation there is info about the project settings.
It says the “Windows - Legacy” project runs in 32-bit, so RAM usage for the execution process is only 2GB.
Yes, I have already implemented your proposed solution. But, I think it is not a suitable solution for my process. Because in the end, I need to read the merged data and store it in memory. So, I am using a different approach that use a DB to save all merged data.