vote up 1 vote down star

In Oracle, there's a view called V$SESSION that lists all active sessions in database. Is there any similar view in SQL Server 2005?

flag

70% accept rate

3 Answers

vote up 1 vote down check

See this answer.

link|flag
vote up 1 vote down

select * from sys.sysprocesses

can be used instead of v$session in oracle

http://silverlightedworld.blogspot.com/2009/04/vsession-for-oracle-and-sql-server.html

Regards Renju www.renjucool.co.nr

link|flag
vote up 0 vote down

Plain old sp_who.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.