Solution:
select user_name,LAST_LOGON_DATE from FND_USER where USER_ID in ( select distinct user_id from icx_sessions where last_connect > sysdate - N and user_id != '-N') order by 2;
Note: Substitute Value for N for the required number of days
select user_name,LAST_LOGON_DATE from FND_USER where USER_ID in ( select distinct user_id from icx_sessions where last_connect > sysdate - N and user_id != '-N') order by 2;
Note: Substitute Value for N for the required number of days
No comments:
Post a Comment