double quotation around a comma

  • 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!

  • I'd do a replace after the BCP. Look for "," and replace it with ,.

    This is the simplest way.

    Steve Jones

    steve@dkranch.net

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply