Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Log user account lockouts
mikaelkruse wrote:
> also dba_users only provide date, no time.
Not true. In Oracle, the DATE datatype also holds the time. You just have to know how to view is:
1 select to_char(lock_date, 'DD-Mon-YY HH24:MI:SS')
2 from dba_users
3* where username = 'DEMO'
SQL> /
TO_CHAR(LOCK_DATE,
HTH -g Received on Thu Mar 16 2006 - 10:39:37 CST
![]() |
![]() |