AFAIK, There is no information on last access to a table in db2 ... The trigger method may work only for Insert, Update, Delete ... Selects cannot be captured using triggers ..
To know a list of tables accessed, you can take a table snapshot, say once every 10 minutes ... At the end of the day, you can format the output to get the list of tables ... The risk here is that only information on tables in the catalog cache will be available .. So, there is a possibility that your table is not listed ...
The definitve method to generate a list is the table event monitor ... The table is triggered when the last application connected to the database is terminated ...
HTH
Sathyaram