MSSQL(在DAC环境下访问: 存储过程)
Server name: admin:计算机名\实例名
or admin:IP地址\实例名
or admin:计算机名
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
--运行结果(擦去了host_name):
在此环境下,可访问一下加密了的存储过程.