带有输出文件和屏幕输出的 sqlcmd
我用 sqlcmd 执行一些命令行批处理(.bat),如下所示:
sqlcmd -i Scripts\STEP01.sql -o PROCESS.log -S MYSERVER -E -d MYDATABASE
我需要一个输出文件(当前可以使用),并且输出还可以通过屏幕执行以下操作:
@echo off
echo The result of the query was:
sqlcmd -i Scripts\STEP01.sql -o PROCESS.log -S MYSERVER -E -d MYDATABASE
pause
CHOICE /C:YN /M "Is the result accord?"
IF ERRORLEVEL 2 GOTO ENDWITHERROR
IF ERRORLEVEL 1 GOTO STEP2
注意:
- 是的,脚本运行成功,这不是问题。
- 是的,我的 sql 上有一个“打印“某事”。日志文件获取输出。
非常感谢!
类似的问题没有答案: 如何使用 sqlcmd 运行 sql 脚本文件并输出到 shell 和文件
I do some command line batch (.bat) with sqlcmd as this way:
sqlcmd -i Scripts\STEP01.sql -o PROCESS.log -S MYSERVER -E -d MYDATABASE
and i need an output file (it's works currently) and also the output trought the screen to do something like:
@echo off
echo The result of the query was:
sqlcmd -i Scripts\STEP01.sql -o PROCESS.log -S MYSERVER -E -d MYDATABASE
pause
CHOICE /C:YN /M "Is the result accord?"
IF ERRORLEVEL 2 GOTO ENDWITHERROR
IF ERRORLEVEL 1 GOTO STEP2
Note:
- Yes, the script works suscefull, it's not an issue question.
- And yes, I've a "print "something" on my sql. The log file gets the output.
Thanks a lot!
Similar question without answer:
How to run a sql script file using sqlcmd and output to both shell and file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也找不到比 @Sparky 提出的更好的方法。以下代码添加了他的建议:
I also couldn't find a better way then @Sparky proposed. The following code adds his suggestion:
如果您愿意,可以改用 powershell 并使用以下命令:
更多信息来自 Microsoft
If you want you can use powershell instead and use the following:
More info from Microsoft