I have some large (20GB+) CSV files which are double quote " text qualified that I need to sort and output to a new file.
Some files are just sorted on one column numerically, whilst others are on two columns, the first numerically and the second by string.
So far I have tried Pythons csv sort, which failed as it eventually ran out of memory. And also CoreUtils for Windows, though the sort doesn't seem to handle the text qualifier and gives incorrect results.
Are there any recommended/existing solutions which will handle this kind of sort? Platform is Windows Server 2008 R2.
