gpt4 book ai didi

Powershell Invoke-Sqlcmd 捕获详细输出

转载 作者:行者123 更新时间:2023-12-04 00:03:13 24 4
gpt4 key购买 nike

我正在尝试从 Powershell 中的 Invoke-Sqlcmd 捕获详细输出。任何人都有任何想法来做到这一点:

IE。

Invoke-Sqlcmd  -Query "PRINT 'Hello World!';" -ServerInstance $Server -verbose  > D:\SqlLog.txt

SqlLog.txt 文件应包含文本“Hello World!”

最佳答案

根据 Capture Warning, Verbose, Debug and Host Output via alternate streams :

...if I wanted to capture verbose output in a script:

stop-process -n vd* -verbose 4>&1 > C:\Logs\StoppedProcesses.log


所以,你会做类似的事情
(Invoke-Sqlcmd -Query "PRINT 'Hello World!';" -ServerInstance $Server -verbose) 4> c:\temp\myoutput.txt
其中 4 是“详细”流。

关于Powershell Invoke-Sqlcmd 捕获详细输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4511498/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com