Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Active Connection ?

Author  Topic 

YogeshDesai
Posting Yak Master

136 Posts

Posted - 2007-04-17 : 06:26:26
Hi All,

I have few questions in mind.
1. Where can I look at active sql connections ?

I use sp_who for this...Is there any other way

2. how to find that SQL server 2000 is 32 bit or 64 bit



Yogesh V. Desai. | SQLDBA|

NeilG
Aged Yak Warrior

530 Posts

Posted - 2007-04-17 : 06:53:59
There is sp_who2 that you can use and in sql server 2000 there is current activity in enterprise manager that will show you all that is happening on the server.
Go to Top of Page

bpgupta
Yak Posting Veteran

75 Posts

Posted - 2007-04-17 : 06:57:53
use can use the sysprocesses tables to see the active connections
Go to Top of Page

SQLServerDBA_Dan
Aged Yak Warrior

752 Posts

Posted - 2007-04-17 : 09:45:50
1) I use sysprocesses. I would not use enterprise manager for viewing this.
2) Use SELECT @@VERSION to see if it is x86 (32bit) or if it is something else.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2007-04-17 : 11:25:09
Use 'sp_who2 active'.
Go to Top of Page

YogeshDesai
Posting Yak Master

136 Posts

Posted - 2007-04-18 : 07:43:02
hi Guys really thanks for your help to gain my knowledge

Yogesh V. Desai. | SQLDBA|
Go to Top of Page
   

- Advertisement -