我想从vbscript启动sqlcmd-script。 我和行得通的是:
return = CreateObject("WScript.Shell").Run("cmd /c ""sqlcmd -S localhost -i --Path and Filename Script--.sql -o --Path and Filename Log--.log -b""")
我的问题:如果现在添加intWindowStyle
和bWaitOnReturn
的参数,该脚本将不再运行。
示例:
return = CreateObject("WScript.Shell").Run("cmd /c ""sqlcmd -S localhost -i --Path and Filename Script--.sql -o --Path and Filename Log--.log -b""", 0, True)
WScript.Echo
说return = 1。
我通过cscript //nologo --script--
批量调用VBScript。