Thanks, I used the db-history table like this:
connect to rmdb5a user db2inst1 using ****;
Select substr(comment,1,20), end_time
from sysibmadm.DB_history
Where comment like 'DB2 BACKUP%'
Order by end_time desc
FETCH FIRST 3 ROWS ONLY;
connect reset;
we never know until it's too late that our servers are down. I needed something to let me know if things were working and I also can quickly check out the backups.