我使用Powershell脚本运行另一个sql脚本。我的问题是这个脚本在某个时刻运行,但它从一开始就停止并重新启动。
你知道为什么这样做吗? 这是我正在谈论的Ps1脚本:
Invoke-Sqlcmd -InputFile "$script.sql" `
-Database $database `
-Server $server `
-UserName $username `
-Password $password `
-QueryTimeout 65534 `
-Verbose | Out-Null) 4> "$script.log"
它是否与我设置的超时有关?
非常感谢!