Hi,
I have a text file with one column:
value1;
value2;
value3;
I want to use the bcp utility to export it to a table with one column [varchar (128)], but I'm not able to define the right arguments so that it can be exported properly.
Any ideas?
Thanks.
I have a text file with one column:
value1;
value2;
value3;
I want to use the bcp utility to export it to a table with one column [varchar (128)], but I'm not able to define the right arguments so that it can be exported properly.
Code:
BCP DBNAME.OWNER.TABLE IN FILE.TXT /U USERNAME /P PASSWORD /S SERVERNAME
Any ideas?
Thanks.