I am trying to export a huge load of data into an Excel file. The only option that SQL Server provides is "Save Results As."
The file type is already defined as .CSV (comma delimited)
.
I have a column with commas in it. So, I need to disable the "comma delimited" feature. When I save it, the column with commas gets separated into two columns and even tampers with other columns.
How do I do it?
Copying the whole data and pasting doesn't work, because it throws an OutOfMemoryException
.