I\'d like to know what stored procedures are currently running to diagnose some performance problems. How can I find that out?
I think you can do execute sp_who2 to get the list of connections, but then you'll need to run a trace through SQL Profiler on the specific connection to see what it's executing. I don't think that works with queries that are already running though.