I use the following sql to identify users who have not accessed livelink this year:
select a.name, a.mailaddress, max(b.auditdate) from kuaf a, daudit b
where b.event = 'LOGIN' AND a.id = b.userid AND deleted = 0 AND b.auditdate < '2005-01-01'
group by a.name, a.mailaddress;
Is this use of auditdate good for what I need?
select a.name, a.mailaddress, max(b.auditdate) from kuaf a, daudit b
where b.event = 'LOGIN' AND a.id = b.userid AND deleted = 0 AND b.auditdate < '2005-01-01'
group by a.name, a.mailaddress;
Is this use of auditdate good for what I need?