How can you find out what are the long running queries are on Informix database server? I have a query that is using up the CPU and want to find out what the query is.
|
|
|||||
|
|
|
Credit: SQL to View Long Running Queries |
||
|
|
|
@Jason: I'm getting table not in database. Using SQuirreL with JDBC driver from here. The server is Informix Dynamic Server 10.00 UC7 |
||
|
|
|
That's because the suggested answer is for DB2, not Informix. The sysmaster database (a virtual relational database of Informix shared memory) will probably contain the information you seek. These pages might help you get started: |
||
|
|
|
|
If the query is currently running watch the onstat -g act -r 1 output and look for items with an rstcb that is not 0
In this example the third row is what is currently running. If you have multiple rows with non-zero rstcb values then watch for a bit looking for the one that is always or almost always there. That is most likely the session that your looking for. c0000000d7afcf20 is the address that we're interested in for this example. Use onstat -u | grep c0000000d7afcf20 to find the session
This gives you the session id which in our example is 22887. Use onstat -g ses 22887 to list info about that session. In my example it's a system session so there's nothing to see in the onstat -g ses output. |
||
|
|
|
|
Okay it took me a bit to work out how to connect to sysmaster. The JDBC connection string is:
Where the port number is the same as when you are connecting to the actual database. That is if your connection string is:
Then the sysmaster connection string is:
Also found this wiki page that contains a number of SQL queries for operating on the sysmaster tables. |
||
|
|
