User creation details in user$ table

Check User creation date/Password change/Expire time in Oracle

Check User Creation Date in Oracle

SELECT NAME, type#, ctime
FROM sys.user$
WHERE NAME IN ('SYS', 'SYSTEM')
ORDER BY NAME;

Check User last password change time in Oracle

SELECT NAME, type#, ptime
FROM sys.user$
WHERE NAME IN ('SYS', 'SYSTEM')
ORDER BY NAME;

Check User Password Expiry Date

SELECT NAME, type#, EXPTIME
FROM sys.user$
WHERE NAME IN ('SYS', 'SYSTEM')
ORDER BY NAME;

Check User Account lock time

SELECT NAME, type#, LTIME
FROM sys.user$
WHERE NAME IN ('SYS', 'SYSTEM')
ORDER BY NAME;

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.