If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I need help with bcp out. I have been able to export the data from a table into a .txt file. However the way I did it export the whole columns of the table into a .txt file.
What I want is to export only certain columns, does anyone know how to do this.
This is what I have in my bcp script:
@echo off
bcp TestDB3.dbo.exp_data out "Z:\Export_Data_.txt" -c -t, -T -S Dasasas1T\ABCTEST -U OWNER
pause