Jun 4, 2001 #1 DirtyB Programmer Mar 13, 2001 159 US We are having some licensing issues. How can you tell, at any given time, what users are currently logged into the database?
We are having some licensing issues. How can you tell, at any given time, what users are currently logged into the database?
Jun 4, 2001 #2 balor Programmer Jul 24, 2000 74 Run the Stored Procedure sp_who (For example from the Query Analyzer). It shows all the current connections to the server. USE master EXEC sp_who Upvote 0 Downvote
Run the Stored Procedure sp_who (For example from the Query Analyzer). It shows all the current connections to the server. USE master EXEC sp_who
Jun 4, 2001 1 Thread starter #3 DirtyB Programmer Mar 13, 2001 159 US THANK YOU...I knew there was a proc for it, but I just had never used it...It's much appreciated Upvote 0 Downvote