如何在 Linux 中使用 BCP 命令?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 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/
假设您的计算机上有包含 bcp 可执行文件的任何软件包,请尝试键入
并查看输出,看看该可执行文件是否存在于您的计算机上但不在您的路径中。 如果这没有返回任何内容,那么您就缺少可执行文件。 如果出现问题,那么您可以尝试使用整个路径运行它。
Assuming that you have whatever package on your machine that contains the
bcp
executable, try typingand 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.
该示例确实看起来像 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.
有关如何安装、部署和使用 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.