使用bcp从文件中跳过第一条记录的方法有多少

时间:2014-08-21 06:26:23

标签: batch-processing

我的文件格式是.xx1,当我尝试使用-F 2排除第一个记录时,它从第3行而不是第2行中选择。

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

bulk insert <table> from '<path of data file>'

with

(

firstrow=2,

formatfile='<path of formatfile>'

)