Under SQL Server, is there an easy way to filter the output of sp_who2? Say I wanted to just show rows for a certain database, for example.
feedback
|
|
You could try something like
And filter on what you require. | |||||||||
|
feedback
|
|
Yes, by capturing the output of sp_who2 into a table and then selecting from the table, but that would be a bad way of doing it. First, because sp_who2, despite its popularity, its an undocumented procedure and you shouldn't rely on undocumented procedures. Second because all sp_who2 can do, and much more, can be obtained from sys.dm_exec_requests and other DMVs, and show can be filtered, ordered, joined and all the other goodies that come with queriable rowsets. | |||||||
feedback
|
|
There's quite a few good sp_who3 user stored procedures out there - I'm sure Adam Machanic did a really good one, AFAIK. Adam calls it Who Is Active: http://sqlblog.com/blogs/adam_machanic/archive/tags/Scripts/default.aspx | |||
|
feedback
|
|
One way is to create a temp table:
| |||||||
feedback
|
|
based on http://sqlserver2005.databases.aspfaq.com/how-do-i-mimic-sp-who2.html Following script uses sys.dm_exec_sessions , sys.dm_exec_requests , sys.dm_exec_connections , sys.dm_tran_locks
| |||
|
feedback
|