最早知道能够使用专用管理员连接。来连接到sql server。可是一直没有成功连接过。今天又看到这个。于是想再试试。
1、通过在ssms中的“连接到server对话框”中的server名称中输入 admin:ggg 然后点击连接。可是弹出一个框,报错:不支持专用管理员连接。
2、打开了SQL Server Browser服务。然后再次连接。还是报相同的错误。
3、开启server配置中的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