SDU Tools: Read CSV File in T-SQL
One of the most common tasks that “data people” perform is moving data around, and that can include exporting existing database data, and importing data from other places.
While there are many other standards for how data is stored in files, CSV (comma-separated-value) files are still (by far) the most common. Another common variation are TSV (tab-separated-value) files, where tabs are used to separate values instead of commas. This is usually a good idea as commas occur frequently within the data.
2018-05-18
