Skip to main content
5-Regular Member
July 12, 2018
Solved

exporting data into csv using csv parser,

  • July 12, 2018
  • 1 reply
  • 1337 views

while exporting data into csv using csv parser, what would happen if the total number of rows is beyond 10 million ? Would another file be created to accommodate the remaining rows ??

Best answer by jamesm1

I'm not sure that I understand the question. Why would it stop at 10 million rows? CSV files have no limit on the number of rows you can add to them and I just checked the CSV Parser library and there is no limit defined there, either. It just loops through all the rows in the InfoTable and appends them to the CSV.

1 reply

jamesm15-Regular MemberAnswer
5-Regular Member
July 13, 2018

I'm not sure that I understand the question. Why would it stop at 10 million rows? CSV files have no limit on the number of rows you can add to them and I just checked the CSV Parser library and there is no limit defined there, either. It just loops through all the rows in the InfoTable and appends them to the CSV.

asekar5-Regular MemberAuthor
5-Regular Member
July 16, 2018

Thank you for your answer. I was under the impression that there could be some size or row limitations. Understand that there isn't any limitations as such.

 

But on the contrary, when I use csv parser functionality, I get two files generated of the same content and same size. Couldn't understand the reason behind that though.