Hi all,
I am using BCP utility to export and import data.
The column data look something like this:
Col_one(varchar) = 'My string contain comma 2,'
When I use BCP I'm using $ delimited and some how SQL Server 7.0 is putting a double quotation around the comma. Something like this:
$My string contain comman 2","$
How can I elimated these two double quatation?
Thank you!