Check other open connections
Database
2
Posts
2
Posters
0
Views
1
Watching
-
Hi there, In SQL Server, is there anyway to check other open connections (who else currently connected to the database)? Thanks.
-
Hi there, In SQL Server, is there anyway to check other open connections (who else currently connected to the database)? Thanks.
sp_who
reports all current connections. The procedure takes its data from thesysprocesses
view (SQL Server 2000) or thesys.dm_exec_connections
dynamic management view in SQL Server 2005.Stability. What an interesting concept. -- Chris Maunder