如何使用Windows身份验证从命令提示符连接到SQL Server

如何使用Windows身份验证从命令提示符连接到SQL Server?

这个命令

Sqlcmd -u username -p password 

假定已经设置了SQL Server的用户名和密码

另外我怎样才能从命令提示符设置用户帐户?

如果这涉及到Windows Server 2008计算机上的SQL Server 2008 Express。


你可以使用不同的语法来实现不同的事情。 如果它是你想要的Windows认证,你可以试试这个:

sqlcmd /S  /d  -E

如果你想使用SQL Server身份验证,你可以试试这个:

sqlcmd /S  /d -U -P 

定义:

/S = the servername/instance name. Example: Pete's Laptop/SQLSERV
/d = the database name. Example: Botlek1
-E = Windows authentication.
-U = SQL Server authentication/user. Example: Pete
-P = password that belongs to the user. Example: 1234

希望这可以帮助!


尝试这个 :

- 默认实例

SQLCMD -S SERVERNAME -E <br/>

- 要么
- 命名实例

SQLCMD -S SERVERNAMEINSTANCENAME -E <br/>

- 要么

SQLCMD -S SERVERNAMEINSTANCENAME,1919 -E

更多详情可在这找到


这可能会有所帮助.. !!!

 SQLCMD -S SERVERNAME -E 
链接地址: http://www.djcxy.com/p/7729.html

上一篇: How to connect to SQL Server from command prompt with Windows authentication

下一篇: How to add Active Directory user group as login in SQL Server