bcp 命令不起作用
我正在使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果我尝试通过将脚本粘贴到 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.
如果您有权访问 xp_cmdshell,您可以从中调用 bcp
注意:我还没有检查上面的内容是否正确的字符转义...这很痛苦。
否则,您将必须从命令行运行 bcp。它是一个命令行工具。 T-SQL 解释器对此一无所知。
If you have access to
xp_cmdshell
you can call bcp from thatNOTE: 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.
同意马丁的观点。 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).
对我来说这看起来像命令行语法。我认为它在 SSMS 中不起作用。
That looks like command line syntax to me. I don't think it works in SSMS.
在命令提示符下使用管理员权限和 unc 路径运行 BCP 似乎可以工作
Running BCP in command prompt with admin rights with unc path seem to work