A frequently asked question is how to get currently opened and used connections on a SQL Server. The easiest way is to use one of the SQL Server managed views to select all open connections: select * from sys.dm_exec_connections
A frequently asked question is how to get currently opened and used connections on a SQL Server.
The easiest way is to use one of the SQL Server managed views to select all open connections:
select * from sys.dm_exec_connections