I'm running a bulk insert like this:
Code:
The file is a tab delimited file with two columns, item name and description
One of the descriptions in the file goes over 2 lines (enclosed in quotes) and it's messing things up.How can I work with this?
ex:
item1 description1
item2 "description2.. .............
...continued description2... ..."
item3 description3... ....
Thanks.
Code:
Code:
BULK INSERT Descriptions FROM '......\Descriptions.txt' WITH (FIELDTERMINATOR = '\t', ROWTERMINATOR ='\n')
One of the descriptions in the file goes over 2 lines (enclosed in quotes) and it's messing things up.How can I work with this?
ex:
item1 description1
item2 "description2.. .............
...continued description2... ..."
item3 description3... ....
Thanks.
Comment