Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: date and time?
A short answer is No. When Oracle stores a date internally it stores it in
7 bytes 1 for Century, 1 for Year, 1 for Month, 1 for Day, 1 for Hour, 1 for
Minute, and 1 for Seconds. You can verify this by issueing the following
query on any table that has a date field:
select dump(my_date)
from mytable;
Hope this is what you were looking for.
Kenny Gump
OCP 7.3 DBA
![]() |
![]() |