Possible Duplicate:
How to determine total number of open/active connections in ms sql server 2005
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?
Possible Duplicate:
How to determine total number of open/active connections in ms sql server 2005
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?
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