名称中带有句点的 BCP 数据库
我在使用 SQL BCP 进程向表加载数据时遇到问题。我从 .NET 应用程序调用它,因此我执行 xp_cmdshell 可执行文件来运行 bcp 命令。这些命令之一如下所示:
EXEC master..xp_cmdshell 'bcp "[D001Test.Restore].[dbo].[GeneralComments]" in "<DataFile>" -q -c -t "|_|" -r "|+~+|" -k -V80 -a33000 -E -STest'
当我导入的数据库名称(在本例中为 D001Test.Restore)具有“.”时。从名称上看,bcp 命令失败。有什么办法解决这个问题吗?我尝试过带括号和不带括号。我可能需要将数据导入到新数据库中,并在完成后将其重命名为所需的名称。
I'm having trouble using the SQL BCP process to load up my tables with data. I'm calling it from a .NET application, so I execute the xp_cmdshell executable to run the bcp command. Here is what one of these commands looks like:
EXEC master..xp_cmdshell 'bcp "[D001Test.Restore].[dbo].[GeneralComments]" in "<DataFile>" -q -c -t "|_|" -r "|+~+|" -k -V80 -a33000 -E -STest'
When the database name I am importing into (in this case D001Test.Restore) has a "." in the name, the bcp command fails. Is there any way around this? I have tried both with and without the brackets. I may have to import the data into a new database, and rename it to the desired name after it is done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 -q 参数和引号。该文档对 q 参数进行了以下说明:
您的数据库名称既不包含空格也不包含单引号。
试试这个:
You do not need the -q argument and the quotation marks. The documentation states the following about the q argument:
Your database name contains neither space nor single quotation mark.
Try this: