I have a CSV file with 20 or so columns and I want to load it into a table with only 9 columns - I want to throw away the rest.

Can I do it directly with bcp or do I need to preprocess the file to strip it down to just what I need?

The manual does not seem to detail it.

But then I seem to have options that arent in the manual, eg -labeled ?

Thanks in advance, Chris

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

No, this isn't possible with bcp.

link|improve this answer
Thanks - was thinking with the format file options it might have been possible... – Chris Kimpton May 6 '11 at 7:15
feedback

You can combine pipes, awk and bcp. F.e.

In the first shell:

mknod bcp.pipe p

cat > awk > bcp.pipe

in the second shell:

bcp db..table in bcp.pipe -c -U ...

link|improve this answer
Thanks - thats what I've started working on - now having the fun of parsing CSV with awk :) – Chris Kimpton May 7 '11 at 10:35
feedback

You could create a view on the table which only includes the columns you want. Then bcp out the view instead of the table.

link|improve this answer
Thanks, good idea - but I am bcp'ing in, not out :( – Chris Kimpton May 27 '11 at 4:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.