Hi,
Informix database server does not store information with regard to when a table has been inserted, updated, or deleted using DML SQL statements, as far I know. If it is a requirement at your application, I would suggest you to introduce an additional date or datetime column to store this information. Alternatively you may think of creating a separate master summary table to hold these information. The possible structure of a table may look like:
1. tablename varchar(64)
2. operation char(1) (I)nsert,(U)pdate,(D)elete
3. user name varchar(64)
4. effect_date datetime
so on ...
Regards,
Shriyan