hey guys
u can use this query to find out the size of a table:
select owner||'.'||segment_name Segment_Name
, segment_type "Segment Type"
, sum(bytes)/1024/1024 "Size In MB"
from dba_segments
group by owner||'.'||segment_name
, segment_type;
Ravi
|
Results 1 to 8 of 8
Thread: size of a tableThreaded View
|
Click Here to Expand Forum to Full Width |