BCP 实用程序遇到错误?

发布于 2024-09-27 11:57:26 字数 324 浏览 5 评论 0原文

我收到以下错误:

SQLState = S1000, NativeError = 0
Error = [Microsoft][ODBC SQL Server Driver]Unable to open BCP host data-file
NULL

使用此 bcp 实用程序时

bcp "select * from database1.dbo.table1" queryout "c:\result.txt" -c -S10.10.10.100\dev -Usa -P123456 -t!

请检查。

I am getting the following error:

SQLState = S1000, NativeError = 0
Error = [Microsoft][ODBC SQL Server Driver]Unable to open BCP host data-file
NULL

while using this bcp utility

bcp "select * from database1.dbo.table1" queryout "c:\result.txt" -c -S10.10.10.100\dev -Usa -P123456 -t!

Please check.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

咋地 2024-10-04 11:57:27

当我的输出文件无法访问时,我之前就遇到过这个错误。确保您可以写入 C:\,否则该文件尚不存在。

I have gotten that error before when my output file was not able to be accessed. Make sure that you can write to C:\, or the file does not already exist.

萌逼全场 2024-10-04 11:57:27

您是从命令提示符运行它吗?我曾经遇到过同样的错误。为了解决这个问题,我将浏览到我想要的目录,在本例中为“C:\”,然后我会调用:

bcp "select * from database1.dbo.table1" queryout "result.txt" -c -S10.10.10.100\dev -Usa -P123456 -t! 

注意我删除了“C:\”。我不知道为什么这有效,但这为我消除了错误。

Are you running this from the command prompt? I used to get the same error. To resolve it, I would browse to the directory i wanted, in this case "C:\" and I would call:

bcp "select * from database1.dbo.table1" queryout "result.txt" -c -S10.10.10.100\dev -Usa -P123456 -t! 

Notice I removed the "C:\". I am not sure why this works but this removed the error for me.

夏日落 2024-10-04 11:57:27

确保 c:\result.txt 未被您或其他任何人打开。

Make sure that c:\result.txt is not open by you or anyone else.

不一样的天空 2024-10-04 11:57:27
  1. 从 SQL Server 外围区域配置启动 xp_cmdshell
  1. Start xp_cmdshell from SQL Server Surface Area Configuration
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文