Hi,
I am producing a DTS package that uses a Bulk insert tool to populate a table from a CSV file.
I can get the data to be populated, but all of the data has quotation marks around it, for example:
col1 col2 col3 col4
"someValue" "123" "blah" "asd"
I can only get DTS to parse the csv file in 1 combination of column, and line delimiters, so am not sure if this is the problem. (I think the csv file is produced from a Linux system so not sure if this has anything to do with it?).
I basically want the data to be like this:
col1 col2 col3 col4
someValue 123 blah asd
How can i do this?
THanks,
MrPEds
I am producing a DTS package that uses a Bulk insert tool to populate a table from a CSV file.
I can get the data to be populated, but all of the data has quotation marks around it, for example:
col1 col2 col3 col4
"someValue" "123" "blah" "asd"
I can only get DTS to parse the csv file in 1 combination of column, and line delimiters, so am not sure if this is the problem. (I think the csv file is produced from a Linux system so not sure if this has anything to do with it?).
I basically want the data to be like this:
col1 col2 col3 col4
someValue 123 blah asd
How can i do this?
THanks,
MrPEds