Is there a tool for windows that we can use to inspect any SQL commands that go through a particular ODBC data source?
|
feedback
|
|
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:
http://decipherinfosys.wordpress.com/2009/01/17/odbc-tracing/ | |||||
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. | |||
|
feedback
|