本文介绍了调用sqlcmd时如何更改端口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个命令
sqlcmd.exe -E -i "C:\joe-db-scripts\joe-db-tasks.Install.sql"
并且我需要添加特定的非标准端口 32001.我该怎么做?我在想像 -p
这样的标志,但我不知道语法.
and I need to add the specific non-standard port of 32001. How do I do that? I was thinking of some flag like -p
or something but I don't know the syntax.
推荐答案
根据 这个 MSDN 链接,你会使用 -S tcp:servername,32001
.
这篇关于调用sqlcmd时如何更改端口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!