标签:des style class blog c code
最早知道可以使用专用管理员连接,来连接到sql server,但是一直没有成功连接过。今天又看到这个,于是想再试试。
1、通过在ssms中的“连接到服务器对话框”中的服务器名称中输入 admin:ggg 然后点击连接,但是弹出一个框,报错:不支持专用管理员连接。
2、打开了SQL Server Browser服务,然后再次连接,还是报同样的错误。
3、开启服务器配置中的remote admin connections选项:
sp_configure 'show advanced options',1 go reconfigure go sp_configure 'remote admin connections',1 go reconfigure go select * from sys.configurations where name = 'remote admin connections'
4、然后,在网上查了资料,也还是一样的问题,但是看到有提到通过命令行来连接的,于是试了试,成功了:
C:\Users\ggg>sqlcmd -A 1> select @@spid 2> go ------ 54 (1 行受影响) 1>
6、验证
运行如下代码:
select e.name, --端点名称 s.session_id, s.program_name, e.protocol_desc, s.host_name from sys.endpoints e inner join sys.dm_exec_sessions s on e.endpoint_id = s.endpoint_id where e.is_admin_endpoint = 1
通过DAC来连接SQL Server,布布扣,bubuko.com
标签:des style class blog c code
原文地址:http://blog.csdn.net/sqlserverdiscovery/article/details/26866645