bcp 命令不起作用

发布于 2024-10-24 12:45:20 字数 379 浏览 1 评论 0原文

我正在使用以下 bcp 命令,

BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) " 
   queryout "d:\temp\CEOExtractCorpRulesView.txt" 
   -S"tcp:BCBWEC-VIRTD2\SQL2005" -c -t"|!" -U"userid" -P"password" 

每次都会出现错误

消息 102,级别 15,状态 1,第 1 行 “queryout”附近的语法不正确。

请让我知道可能是什么问题。这不是我的剧本。

谢谢

I'm using the following bcp command

BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) " 
   queryout "d:\temp\CEOExtractCorpRulesView.txt" 
   -S"tcp:BCBWEC-VIRTD2\SQL2005" -c -t"|!" -U"userid" -P"password" 

I get an error every time

Msg 102, Level 15, State 1, Line 1
Incorrect syntax near 'queryout'.

Please let me know what the problem might be. This is not my script.

Thanks

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

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

发布评论

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

评论(5

将军与妓 2024-10-31 12:45:20

如果我尝试通过将脚本粘贴到 SSMS 中并单击“执行”来执行该脚本,我会收到相同的错误。

据我所知,您需要打开命令窗口并运行它。

I get the same error if I try and execute this script by pasting it into SSMS and clicking execute.

AFAIK you need to open a command window and run this.

携君以终年 2024-10-31 12:45:20

如果您有权访问 xp_cmdshell,您可以从中调用 bcp

exec xp_cmdshell 'BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) " 
   queryout "d:\temp\CEOExtractCorpRulesView.txt" 
   -S"tcp:BCBWEC-VIRTD2\SQL2005" -c -t"|!" -U"userid" -P"password" '

注意:我还没有检查上面的内容是否正确的字符转义...这很痛苦。

否则,您将必须从命令行运行 bcp。它是一个命令行工具。 T-SQL 解释器对此一无所知。

If you have access to xp_cmdshell you can call bcp from that

exec xp_cmdshell 'BCP "select * from PACIFIC.dbo.CEOExtractCorpRulesView with(nolock) " 
   queryout "d:\temp\CEOExtractCorpRulesView.txt" 
   -S"tcp:BCBWEC-VIRTD2\SQL2005" -c -t"|!" -U"userid" -P"password" '

NOTE: I have not checked the above for proper character escaping... That's a pain.

Otherwise, you will have to run bcp from command line. It's a command-line tool. The T-SQL interpreter knows nothing of it.

谢绝鈎搭 2024-10-31 12:45:20

同意马丁的观点。 BCP 适用于 C 提示符,不适用于 SQL Server Management Studio。要在 SSMS 中运行它,您需要使用 xp_cmdshell(并以有权访问 xp_cmdshell 的用户身份登录)。

Agreed with Martin. BCP is for the C prompt not for SQL Server Management Studio. To run it inside SSMS you need to use xp_cmdshell (and be logged as a user with rights to get to xp_cmdshell).

风渺 2024-10-31 12:45:20

对我来说这看起来像命令行语法。我认为它在 SSMS 中不起作用。

That looks like command line syntax to me. I don't think it works in SSMS.

咋地 2024-10-31 12:45:20

在命令提示符下使用管理员权限和 unc 路径运行 BCP 似乎可以工作

Running BCP in command prompt with admin rights with unc path seem to work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文