Quote:
|
Originally Posted by gpeee
Hi Friends,
We are using db2v8.1 on Win2K. After issuing the "db2 list applications" command I got the following output. Now, my query is how to identify which "Application Id" is from which client/tcpip address. After going thru the online manual I came to know "Application Id" parameter denotes the same and converts the IP address into hexadecimal. But still it is not clear to me as how to get the IP address or node name. If anybody can explain the same to me it would be of great help.
For example Application Id :
17216851.1444.000B00180031
or
*LOCAL.DB2.040705055452
what does this denote?
db2 => list applications
Auth Id Application Appl. Application Id DB # of
Name Handle Name Agents
-------- -------------- ---------- ------------------------------ -------- -----
FFM db2syscs.exe 85 *LOCAL.DB2.040705055452
FFM_ENTS 1
FFM JDBC4DB2 80 17216851.1444.000B00180031 FFM_ENTS 1
FFM db2syscs.exe 81 *LOCAL.DB2.040705055355 FFM_ENTS 1
FFM db2syscs.exe 73 *LOCAL.DB2.040705055226 FFM_ENTS 1
FFM JDBC4DB2 71 17216851.1398.000B00160018 FFM_ENTS 1
|
Why not do a snapshot for applications? That gives you the IP too, in a less cryptic format.
There's also the new query-able snapshot stuff:
SELECT INBOUND_COMM_ADDRESS FROM TABLE( SNAPSHOT_APPL( 'SAMPLE', -1 )) as SNAPSHOT_APPL
See the Monitoring Guide for full details of all the available columns, it's pretty extensive.