名称中带有句点的 BCP 数据库

发布于 2024-08-22 10:17:00 字数 396 浏览 8 评论 0原文

我在使用 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 技术交流群。

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

发布评论

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

评论(1

橙幽之幻 2024-08-29 10:17:00

您不需要 -q 参数和引号。该文档对 q 参数进行了以下说明:

使用此选项指定数据库,
所有者、表或视图名称
包含空格或单引号
标记。附上整个三部分
表或视图名称用引号引起来
(“”)。

您的数据库名称既不包含空格也不包含单引号。

试试这个:

bcp [D001Test.Restore].dbo.GeneralComments in "<DataFile>" -c -t "|_|" -r "|+~+|"
-k -V80 -a33000 -E -STest

You do not need the -q argument and the quotation marks. The documentation states the following about the q argument:

Use this option to specify a database,
owner, table, or view name that
contains a space or a single quotation
mark. Enclose the entire three-part
table or view name in quotation marks
("").

Your database name contains neither space nor single quotation mark.

Try this:

bcp [D001Test.Restore].dbo.GeneralComments in "<DataFile>" -c -t "|_|" -r "|+~+|"
-k -V80 -a33000 -E -STest
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文