Have you ever wondered how to check how many users are logged in to the SQL Server? You must have right' so here is the solution to find it out. Execute any one of the below query in your SQL Server.
select * from sys.sysprocesses
or
EXEC sp_who
or
EXEC sp_who2
To know more about eh sysprocesses go to this link: http://msdn2.microsoft.com/en-us/library/ms179881.aspx
You can also check the active connections for each Database in your SQL Server. To do so execute the following query.
SELECT db_name(dbid) as DatabaseName, count(dbid) as NoOfConnections,
loginame as LoginName
FROM sys.sysprocesses
WHERE dbid > 0
GROUP BY dbid, loginame
select * from sys.sysprocesses
or
EXEC sp_who
or
EXEC sp_who2
To know more about eh sysprocesses go to this link: http://msdn2.microsoft.com/en-us/library/ms179881.aspx
You can also check the active connections for each Database in your SQL Server. To do so execute the following query.
SELECT db_name(dbid) as DatabaseName, count(dbid) as NoOfConnections,
loginame as LoginName
FROM sys.sysprocesses
WHERE dbid > 0
GROUP BY dbid, loginame
Comments
Post a Comment