如何从SQL Server的命令行工具执行sql查询?

时间:2017-05-09 07:11:48

标签: sql-server-2012

我是SQL Server的新手,有人可以帮我从SQL Server的命令行工具执行SQL查询吗?

1 个答案:

答案 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.