BCP批量插入到单个行/字段中

发布于 2024-11-08 04:01:02 字数 658 浏览 0 评论 0原文

我试图让 BCP 将文本文件的内容插入到单个字段中。

示例文件内容

字段1,字段2,字段3

1,测试,,

2,,测试

3、测试、测试

以下命令将上面的每一行作为新行导入到我的临时表中。

bcp mydb..tempTable in c:\testFile.txt -T -c

我认为解决方案是使用 -r 开关将行终止符指定为文件末尾,但我不确定如何执行此操作。

编辑

我找到了解决方案。我导入的文本文件首先使用 BCP 创建,在我的示例中,所有文件内容都来自单个 nvarchar(max) 字段和行。如果我在导出期间通过 -r 设置行终止符,那么这也将成为我的文件的结尾。然后,我可以使用 c:\testFile.txt -T -c -r {eof} 中的 bcp mydb..tempTable 进行导入。

我现在遇到的唯一问题是 BCP 命令的输出显示“Error = [Microsoft][SQL Server Native Client 10.0]BCP 数据文件中遇到意外的 EOF”,但是,数据仍然按照我想要的方式导入,所以大概我可以忽略这个吗?

I'm trying to get BCP to insert the contents of a text file into a single field.

Example file content

Field1,field2,Field3

1,test,,

2,,test

3,test,test

The following command imports each line above as a new row into my temp table.

bcp mydb..tempTable in c:\testFile.txt -T -c

I think the solution is to use the -r switch to specify the row terminator as the end of the file but I'm unsure how to do this.

EDIT

I found the solution. The textfile I am importing is first created using the BCP, in my example all of the file contents comes from a single nvarchar(max) field and row. If I set the row terminator via -r during the export then this also becomes the end of my file. I can then import using bcp mydb..tempTable in c:\testFile.txt -T -c -r {eof}.

The only issue I have now is that the output from the BCP command states "Error = [Microsoft][SQL Server Native Client 10.0]Unexpected EOF encountered in BCP data-file", however, the data still imports as I want so presumably I can ignore this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文