Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: partition table help
Have you tried 'dba_segments' ? There is a
partition_name column, which you can use to group by.
select segment_name, partition_name, sum(bytes)
from dba_segments
where segment_name = <your table name>
group by segment_name, partition_name
I am not sure how it would treat CLOB/BLOB.
Thanks,
Deepak
> How do I determine the space used by a partitioned
> table? The traditional
> tablespace scripts (i.e. dba_tablespaces,
> dba_data_files, dba_free_space,
> ...) don't seem to be reporting accurately.
>
> I have one partitioned table that contains CLOB and
> BLOB with "storage in
> row" defined. There is only 13 columns in the
> table. The table is range
> partitioned into 16 partitions. Each partition is
> contained within its own
> tablespace.
>
> Every time I run a query against the table it says
> it is 90% full. In one
> instance I have 7 records in the table and in
> another instance I have 165
> records in the table. Both are relatively new
> instances for testing.
>
> I have looked on metalink and I can see is a FAQ on
> partitioned tables for 8
> and 8i. Is there a site with more information on
> partitioned tables and how
> to determine space used?
>
> thanks.
>
>
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Aug 02 2005 - 12:46:02 CDT
![]() |
![]() |