Is there a tool for windows that we can use to inspect any SQL commands that go through a particular ODBC data source?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can make ODBC log out everything it's doing:

http://support.microsoft.com/kb/274551

http://msdn.microsoft.com/en-us/library/ms711020%28VS.85%29.aspx

You can also do it programmatically:

... One can do this by calling SQLSetConnectAttr and set the SQL_ATTR_TRACE attribute in the connection to SQL_OPT_TRACE_ON. So, by doing this you would be enabling/disabling it for the connection duration.

http://decipherinfosys.wordpress.com/2009/01/17/odbc-tracing/

link|improve this answer
Yes I found this info before, but i was not able to get it to work when I enable it. no log file is created even though tracing is on. So I thought maybe there is a 3rd party tool out there that will just work out of the box. – 7wp Nov 30 '09 at 21:31
It has always "just worked out of the box" for me. Maybe you should create a question on SuperUser to solve the tracing problem. Have you tried re-installing ODBC, MDAC, etc.? Unfortunately, I don't know of any other software that does the same thing. – Tim Sylvester Nov 30 '09 at 21:58
feedback

If you're using SQL Server, look at the SQL Server Profiler. Profiler allows you to monitor/trace all communications between your application and the SQL Server, including which procedures are called, parameter values, etc, without having to modify your application.

If you're using a different server, you should be able to find a sql proxy that will do the same thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.