Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: STORAGE PARAMETER COMPUTE
Seema,
if this question is based on the desire to store the whole table in a single extent, then you should change your thinking about extent management. typically, it is preferrable to only have a limited number of different extent sizes in your database. preferrably in locally managed tablespaces, of course. in that case INITIAL becomes irrelevant; you only need to do some overall capacity planning.
hope this helps, kind regards,
Lex.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Seema Singh
Sent: maandag 22 maart 2004 19:22
To: oracle-l_at_freelists.org
Subject: STORAGE PARAMETER COMPUTE
Hi,
How to compute table storage parameters INITIAL value ?
Total# of rows=20,000
PCTFREE=15 PCTUSED=75 PCTFREE=0
fr_category integer not null, (Integer 38) to_category integer not null, (integer 38) weight integer not null default 5 check (weight between 1and 10),
constraint CAT_TO_CAT_PK PRIMARY_KEY (from_category, to_category),
foreign key (from_category) references categories(category_id), foreign key (to_category) references categories(category_id));
Please advice.
Thx -Seema
Thanks for your help on this.
![]() |
![]() |