Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组 SQLCMD 代码,它们将被保存为 exe 文件,这样人们就可以只执行文件而不是复制粘贴代码并在命令行中运行命令。
将您的 sql 代码写入文件,例如 script.sql,然后使用以下命令创建批处理文件(例如 run.bat)
sqlcmd -U user -P passwrod -S SerwerName -i C:\script.sql