Good afternoon! I have a directory with a two identically-structured Excel files (I can also use CSV, and there might be in theory more than two) with about 50,000 rows each. I need to combine all of the files in that directory, sort them by an ID, and then unflatten them for a call to a Web API.
In an answer to a previous question, I saw how to unflatten data from a SQL query, so my question is this: how to I combine and then sort two large Excel (or CSV) files? Thanks!
edit I found http://blogs.mulesoft.org/using-in-memory-database-to-help-with-flat-file-integration/, which I'll be using for the sorting and combining. My only remaining question is how I wait until all of the files have been loaded to continue with the flow?