Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How many extents allowcated to a table?
Craig Duncan wrote:
>
> A simple dba question (I think!)
>
> How does one find out the number of extents that have been
> allocated to a table?
>
> Thanks,
> Craig Duncan
For total extents
select *
from dba_segments
where owner = ...
and segment_name = ...
and segment_type = 'TABLE'
For a list of the extents
select *
from dba_extents
etc
--
![]() |
![]() |