I use DB2 v9.5 fixpack 2 on Linux and I would like to monitor which user accessed which table. What is the best way to do this?
Sample:
connect to database user user1
select * from admin.table1
connect reset
connect to database user user2
insert into admin.table1
connect reset
I would like to get info something like:
Code:
USER TABLE DATE_TIME
user1 admin.table1 2010-01-07-12.12.10
user2 admin.table1 2010-01-07-12.12.12
Thanks