The numeric truncation in ima_gcc_info appears to be a bug, 114612. The following SQL should fix it, changing varchar(10) to varchar(20), at least it did for me in a 2.6 installation I tested:
Code:
drop table table ima_gcc_info;
\p\g
register table ima_gcc_info (
net_server varchar(64) not null not default
is 'SERVER',
inbound_max varchar(20) not null not default
is 'exp.gcf.gcc.ib_max',
inbound_current varchar(20) not null not default
is 'exp.gcf.gcc.ib_conn_count',
outbound_max varchar(20) not null not default
is 'exp.gcf.gcc.ob_max',
outbound_current varchar(20) not null not default
is 'exp.gcf.gcc.ob_conn_count'
) as import from 'tables'
with dbms = IMA,
structure = sortkeyed,
key = (net_server);
\p\g
As for getting a list of connections in IMA I don't think it's possible as the mib instances used in ima_gcc_sessions don't exist. So the only way to get a list of inbound connections per GCC would be to use netstat or lsof.
regards
grant