How do I use boost bcp?

情到浓时终转凉″ 提交于 2019-12-04 06:12:15

As @Rup pointed out in the comments, the likely error is that you have SQL Server's Bulk Copy Program present on your system. That program is also named bcp.exe and is most likely present in your PATH environment variable. The Boost bcp is either not present in your PATH, or is preceded by the SQL bcp (Windows will stop searching for other programs as soon as it finds a match).

To call the Boost bcp you should either

  1. Rename it to something else (e.g. boost-bcp) and update your PATH variable to reflect that and make sure there are no other conflicting names. Then call with "boost-bcp" --YOUR_OPTIONS.
  2. Call the Boost bcp with the full path to its current location, e.g. "C:\Boost\bcp.exe" --YOUR_OPTIONS
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!