SELECT GREATEST(4, CEIL(NUM_ROWS/
((ROUND(((1958-(INI_TRANS*23))*
((100-PCT_FREE)/100))/AVG_ROW_LEN)))) * 2048) 
TABLESIZE_KBYTES
FROM USER_TABLES
WHERE TABLE_NAME = UPPER('&1'); 

select avg_row_len 
from user_tables 
where table_name='WEB_MENU';


select segment_name, bytes 
from dba_segments a 
where segment_name = 'WEB_MENU'; 

하면 테이블의 전체 바이트 수가 나온다.
전체 건수로 나누면, 한 row에 대한 평균 len을 구할 수 있다