I am trying to import comma delimited data into a table for processing and then export back to a comma delimited file. I can import with bulk insert, but I want to use bcp so those columns without data in my file can be ignored. I can’t seem to get past the easiest command. I am using query analyzer to run this. Can someone help me with this code?
bcp in_ Split in 'd:\transfer\test.txt' -c -t, -T
in_Split is my table and d:\transfer\test.txt resides on my server.
Thanks!
bcp in_ Split in 'd:\transfer\test.txt' -c -t, -T
in_Split is my table and d:\transfer\test.txt resides on my server.
Thanks!