I am new to SQL Server Management Studio and am wondering if there is a way to see what queries have been ran against a database. Surely there is a way to see these. In the Activity monitor, there is a "Recent Expensive Queries" but I'm guessing that isn't all of the queries since I'm not seeing the ones I have ran. I am running SQL Server 2008 v 10.0.1600.22.
|
feedback
|
|
Use SQL Profiler and use a filter on it to get the most expensive queries. | |||||||
feedback
|
|
You need a SQL profiler, which actually runs outside SQL Management Studio. If you have a paid version of SQL Server (like the developer edition), it should be included in that as another utility. If you're using a free edition (SQL Express), they have freeware profiles that you can download. I've used AnjLab's profiler (available at http://sites.google.com/site/sqlprofiler), and it seemed to work well. | |||
|
feedback
|
|
If you want SSMS to maintain a query history, use the SSMS Tool Pack add on. If you want to monitor the SQL Server for currently running queries, use SQL PRofiler as other have already suggested. | |||
|
feedback
|
|
In use the Activity Monitor. It's the last toolbar in the top bar. It will show you a list of "Recent Expensive Queries". You can double-click them to see the execution plan, etc. | |||
|
feedback
|
|
Run the following query from Management Studio on a running process:
This will return the SQL currently being run against the database for the SPID provided. Note that you need appropriate permissions to run this command. This is better than running a trace since it targets a specific SPID. You can see if it's long running based on its CPUTime and DiskIO. Example to get details of SPID 64:
| |||
|
feedback
|
This will work for sql server 2005 | |||
|
feedback
|