如何在 Linux 中使用 BCP 命令?

发布于 2024-07-16 06:40:34 字数 308 浏览 11 评论 0原文

我想在 Linux 中使用 bcp 命令,如下所示:

bcp "EasyCash.dbo.user" out "[EasyCash].[dbo].[user].dat" -q -c -t "<EOFD>"
         -r "<EORD>" -Usa -P123456 -S192.168.1.5

Linux 中的消息显示如下:

-base bcp: command not found

谁能解决我的问题吗?

I want to use the bcp command in Linux as the following:

bcp "EasyCash.dbo.user" out "[EasyCash].[dbo].[user].dat" -q -c -t "<EOFD>"
         -r "<EORD>" -Usa -P123456 -S192.168.1.5

The message in Linux shows like that:

-base bcp: command not found

Can anyone solve my problem?

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

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

发布评论

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

评论(4

谈下烟灰 2024-07-23 06:40:34

您可以使用 FreeTDS 及其 FreeBCP 实用程序。 它类似于 MSSQL Server 的 bcp.exe http://www.freetds.org/

You can use FreeTDS and its FreeBCP utility. It's comparable to MSSQL Server's bcp.exe http://www.freetds.org/

秋日私语 2024-07-23 06:40:34

假设您的计算机上有包含 bcp 可执行文件的任何软件包,请尝试键入

locate bcp | grep bin

并查看输出,看看该可执行文件是否存在于您的计算机上但不在您的路径中。 如果这没有返回任何内容,那么您就缺少可执行文件。 如果出现问题,那么您可以尝试使用整个路径运行它。

Assuming that you have whatever package on your machine that contains the bcp executable, try typing

locate bcp | grep bin

and look at the output to see if this executable exists on your computer but is not in your path. If this does not return anything, then you are missing the executable. If this turns up something, then you can try to run it using the whole path.

神也荒唐 2024-07-23 06:40:34

该示例确实看起来像 MSSQL 的 BCP 命令)(-Usa...“sa”用户)。 MSSQL 是仅限 Windows 的产品。

That example sure looks like MSSQL's BCP command )(-Usa... the 'sa' user). MSSQL is a Windows only product.

情话墙 2024-07-23 06:40:34

有关如何安装、部署和使用 bcp 命令的完整详细信息,请参阅 Sybase ASE 文档。 或者询问您的 DBA。

See the Sybase ASE documentation for full details of how to install, deploy and use the bcp command. Or ask your DBA.

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