Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: what's the size of a date field?
The size is 7.
avg_row_len includes the row header.
dba_tab_columns.data_length has the "correct" result 7.
The length function applies to varchar2 fields, so the date is converted to a character using your default date format, and the length of the string is returned. length ('06-OCT-03') = 9
> -----Original Message-----
> elain he
>
> 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?
>
> 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
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jacques Kilchoer INET: Jacques.Kilchoer_at_quest.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 - 14:54:31 CDT