Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I monitor the executed sql statements on a SQL Server 2005

In a project of mine the SQL statements that are executed against a SQL Server are failing for some unknown reason. Some of the code is already used in production so debugging it is not an easy task. Therefore I need a way to see in the database itself what SQL statements are used, as the statements are generated at runtime by the project and could be flawed when certain conditions are met.

I therefore considered the possibility to monitor the incoming statements and check myself if I see any flaws.

The database is running on a SQL Server 2005, and I use SQL server management studio express as primary tool to manipulate the database. So my question is, what is the best way to do this?

like image 397
sven Avatar asked Sep 06 '08 10:09

sven


2 Answers

Seeing how you use the Management Studio Express, I will assume you don't have access to the MSSQL 2005 client tools. If you do, install those, because it includes the SQL profiler which does exactly what you want (and more!). For more info about that one, see msdn.

I found this a while ago, because I was thinking about the exact same thing. I have access to the client tools myself, so I don't really need to yet, but that access is not unlimited (it's through my current job). If you try it out, let me know if it works ;-)

like image 107
Erik van Brakel Avatar answered Sep 21 '22 19:09

Erik van Brakel


Best way is to fire up profiler, start a trace, save the trace and then rerun the statements

like image 25
SQLMenace Avatar answered Sep 21 '22 19:09

SQLMenace