|
-
Jun 6th, 2000, 08:20 AM
#1
Thread Starter
Addicted Member
Does anyone know how to retrieve a list of who is currently connected to a SQL Server 7 database???
-
Jun 6th, 2000, 11:58 AM
#2
Guru
Hi Jason
Login to the MASTER database, and SELECT * FROM SYSUSERS
Or you can peruse thru the SQL DMO object library to find it that way, but then you need the SQL server enterprise manager installed on your clients.....
Tom
-
Jun 6th, 2000, 01:05 PM
#3
Guru
My Bad!
Use SELECT * FROM SYSPROCESSES
SYSUSERS lists the users, not the active users
SYSPROCESSES will list all processes from the system and active users
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|