Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: MAX_EXTENTS
Luc,
MAX_EXTENTS for the tablespace is just a default applied to any objects =
you
create in the tablespace for which you don't specify a MAX_EXTENTS
parameter.
Additionally, selecting count(*) from dba_extents gives you all of the
extents for all of the segments in the tablespace. If you want to see =
if
any particular objects have more than 1017 extents, run a query like =
the
following:
select segment_name, segment_type, count(*)
from dba_extents
group by segment_name, segment_type
having count(*) > 1017
/
Or, you can query dba_segments directly to see the number of extents =
per
segment.
Regards,
Diana
-----Original Message-----
From: DEMANCHE Luc (Cetelem) [mailto:luc.demanche_at_cetelem.fr]
Sent: Thursday, November 09, 2000 11:31 AM
To: Multiple recipients of list ORACLE-L
Subject: MAX_EXTENTS
Hi gurus,=20
I noticed a little weird thing :=20
FICOMOP> select max_extents from dba_tablespaces where tablespace_name =
=3D
'TBS_TRAVAIL';=20
MAX_EXTENTS=20 -----------=20 1017=20
COUNT(*)=20 ----------=20 19402=20
-----------------=20
![]() |
![]() |