Logon info

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • craigkel
    New Member
    • Aug 2006
    • 2

    Logon info

    Hi, i need to extract information from an Oracle 9i database about any user that has been logged onto the database for more than a month... any suggestion.
  • kshamen
    New Member
    • Aug 2006
    • 1

    #2
    select * from v$session where (sysdate - logon_time) > 30




    Originally posted by craigkel
    Hi, i need to extract information from an Oracle 9i database about any user that has been logged onto the database for more than a month... any suggestion.

    Comment

    Working...