Personal tools
You are here: Home Oracle How To's How to query Oracle's users that changed their password recently...
Navigation
Log in


Forgot your password?
 
Document Actions

How to query Oracle's users that changed their password recently...

How to query Oracle's users that changed their password recently...

select name, ptime
           from sys.user$
           where exists (select username
                         from dba_users
                         where dba_users.username = user$.name
                         and
                         default_tablespace = 'your-user-tablespace')
    order by 1;

Security Awareness
Would you like your company to implement gamification into your security awareness program?





Polls