Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: what's the size of a date field?
elain he wrote:
>
> Hi,
> I'm trying to figure out the size (in bytes) of a DATE column. Executing the
> three queries below returned me three different values. Is there any way of
> finding the size of a date column in the database?
>
> Thanks.
>
> elain
>
> select * from testing;
> DOB
> ---------
> 06-OCT-03
>
> desc testing
> Name
> Null? Type
> ------------------------------------------------------------------------
> -------- -------------
> DOB
> DATE
>
> select avg_row_len from user_tables where table_name='TESTING';
> AVG_ROW_LEN
> -----------
> 11
>
> select data_length from dba_Tab_columns where table_name='TESTING';
> DATA_LENGTH
> -----------
> 7
>
> select length (timestamp) from abc;
> LENGTH(TIMESTAMP)
> -----------------
> 9
>
select vsize(dob), dump(dob) from testing;
-- Regards, Stephane Faroult Oriole Software -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Stephane Faroult INET: sfaroult_at_oriole.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Mon Oct 06 2003 - 15:04:32 CDT
![]() |
![]() |