我是SQL Server的新手,有人可以帮我从SQL Server的命令行工具执行SQL查询吗?
答案 0 :(得分:0)
使用下面的命令提示符查询来使用SQLCMD执行filename.sql。
SQLCMD -d <database-name> -U <User-name> -P <Password> -i filename.sql -o output.txt
-d = Database Name
-U = User Name
-P = Password
-i = Filename.sql
-o = output.txt
-E = Windows Authentication mode if you specify this need to skip -U & -P parameters.