Subject says it all. Looking to capture sql submitted to DB2.

link|improve this question

76% accept rate
Where does the SQL come from? – Thorbjørn Ravn Andersen Sep 7 '11 at 8:32
feedback

4 Answers

If you have Java support enabled, you can use SQL PL Profiler.

http://www.ibm.com/developerworks/data/library/techarticle/dm-0406rielau/index.html

link|improve this answer
2  
It appears that the OP is running on an iSeries – this article only applies to DB2 running on Linux/UNIX/Windows. – Ian Bjorhovde Aug 31 '11 at 16:55
feedback

i use the DB2 Command Center with a graphical view of the generated tree

link|improve this answer
Can you give me more info? Also, where can I get it? – Bill Martin Aug 31 '11 at 14:12
Command Center can show you the explain plan for a particular query, but it will not capture SQL executing in the engine. – Ian Bjorhovde Aug 31 '11 at 16:56
that is only partly tru. You can launch an activity monitor with lots of information. But it is very ugly (Java-slow) – Peter Miehle Sep 1 '11 at 10:05
feedback

In iSeries Navigator, there is SQL Performance Monitor. I haven't ever been able to figure it out, but it might be what you are looking for.

screen shot of iSeries Navigator

link|improve this answer
1  
Starting a general performance monitor over all tables is probably a bad idea, especially over a production system. You may have better luck looking at the plan cache instead (don't really know, I'm not a DBA). I have run into situations where 'general' performance monitors 'disallow' other monitors to be started, because of the setup (logging to locked-down library, couldn't request access over a file because of that). – X-Zero Aug 31 '11 at 20:15
feedback

Take a look at the Iseries SQL Exit Points which will allow you to log any submitted SQL. The only problem is you will have to write your own programs to do the logging:

http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Frzaik%2Frzaikodbcexitprog.htm

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.