Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: DBA_TABLESPACES - MIN_EXTLEN

Re: DBA_TABLESPACES - MIN_EXTLEN

From: paquette stephane <stephane_paquette_at_yahoo.com>
Date: Wed, 9 Aug 2000 01:10:49 -0700 (PDT)
Message-Id: <10584.114153@fatcity.com>


The minimum extent lenght is a new tablespace feature on Oracle 8.x.

It forces the extent size to be a multiple of the minimum extent lenght parameter.

Let say you create a tablespace
create tablespace tbs datafile....
default storage (initial 100K next 100K pctincrease 0) minimum extent 100K;

If you create a table like
create table ...
storage (initial 150K...)

Oracle will create it with an initial extent of 200K. Each extent will be a multiple of the minimum extent lenght.


Stephane Paquette
DBA Oracle
stephane_paquette_at_yahoo.com
spaquette_at_houra.fr
(33) 01 53 93 06 50
Received on Wed Aug 09 2000 - 03:10:49 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US