This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to check user's last login details?

Hi,

Is there any table where user's last login details to webportal is stored? 

Parents
  • Hi,

    select * from DialogJournal
           where ApplicationName = 'Web Portal Runtime'
           order by MessageDate desc

    By default, only failed logins will be recorded.

    If you want to record successful logins you have to enable the config parm:  Common\Journal\LoginAudit

    Note:  This will enable login logging for ALL applications - including the jobserver services.

    HTH, Barry.

    P.S. This assumes you are on V7 or above.

Reply
  • Hi,

    select * from DialogJournal
           where ApplicationName = 'Web Portal Runtime'
           order by MessageDate desc

    By default, only failed logins will be recorded.

    If you want to record successful logins you have to enable the config parm:  Common\Journal\LoginAudit

    Note:  This will enable login logging for ALL applications - including the jobserver services.

    HTH, Barry.

    P.S. This assumes you are on V7 or above.

Children