All,
I have analyzed the tables today in my database, it's showing me avg_row_len of some of tables 0 !
Can anybody pelase throw some light on this please !
Thanks in advance,.
"The power of instruction is seldom of much efficacy except in those happy dispositions where it is almost superfluous" - Gibbon, quoted by R.P.Feynman
I am checking from dba_tables only,
when I fire table_name, sum(avg_row_len) from dba_tables,
I get some tables with avg_row_len zero and they really6 haev no data in it i.e 0 records.
Why is that ?
My understanding is that avg_row_len is just that - it is the average real length of the rows, which is less than the maximum because varchar2() only takes the space needed (plus a little bit) unlike char() where trailing spaces are included. If there are no rows this average can't be calculated. I guess it should be NULL not zero!
Last edited by DaPi; 12-19-2002 at 09:35 AM.
"The power of instruction is seldom of much efficacy except in those happy dispositions where it is almost superfluous" - Gibbon, quoted by R.P.Feynman
Bookmarks