When I execute below TSql script, it gives number of active connections with respect to each host name.However is shows more than 200 active connections from one of the Developer workstation.In fact he do not have any active query windows open in SSMS.Please suggest why SQL Server Sys Processes table is showing the information incorrectly.
SELECT HostName,COUNT(*) As NoOfActiveConnections FROM SYS.SYsProcesses GROUP BY HostName Order By NoOfActiveConnections DESC
program_name
column? – Martin Smith