Are you asking what I mean by registering classids or are you looking for a list of relevant classids?
There's a very good explanation of IMA, classids and how to register tables in the Ingres 10 System Administrators Guide. The 9.2 version is not so good.
Actually I was sure when I tested this the other day that the classids I checked worked in 9.2 but I can't get it to work now, though it does in 10.0.
I tested using this register table:
Code:
register table ima_gcd_connections (
server varchar(64) not null not default is 'SERVER',
connection_id integer4 not null not default is 'exp.gcf.gcd.conn',
dbms integer4 not null not default is 'exp.gcf.gcd.conn.dbms',
client_user varchar(64) not null not default is 'exp.gcf.gcd.conn.client_user',
client_host varchar(64) not null not default is 'exp.gcf.gcd.conn.client_host',
client_addr varchar(64) not null not default is 'exp.gcf.gcd.conn.client_addr'
)
as import from 'tables' with dbms = IMA,
structure = unique sortkeyed,
key = (server, connection_id)
\p\g
I got the classids from looking in the source, see common/hdr/hdr/gcm.h. Unfortunately there's nothing in there that ties the DAS server session to a DBMS session.