I am exporting a big SSMS query result (2M lines, 1 column) to a CSV file.
Each row may contain multiple words.
Is it possible to tokenize each line, such that every "space" character encountered will be comma-delimited?
For example (column header not included)
Database column:
The quick brown fox
Jumps over the lazy dog
Query result in CSV file:
The,quick,brown,fox
Jumps,over,the,lazy,dog