Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: INITIAL, NEXT, PCTFREE and PCTUSED
Phase 1
1) PCTFREE: Set to around 10% if few updates or around 40% if many updates
2) PCTUSED: Set to around 40% if many deletes or around 60% if not many
deletes
3) PCTINCREASE: Almost always set to 1
Phase 2
3) Figure our how many bytes and average rows will be
4) Average row * number of rows per month * months of data you plan on
storing = Total data
5) Total data * (PCTFREE/100+1) = New total data
6) New total data * (overhead/100+1) (Note: good overhead number = 10%)
This will give you how much data your table will be holding when full. This will help you choose an appropriate INITIAL and NEXT value.
AJ
Jack Zhu <jackzhu_at_monmouth.com> wrote in message
news:936455122.1061762385_at_news.monmouth.com...
> For creating a table which will store large data and has millions rows,
how to
> determine the proper size of INITIAL, NEXT, PCTFREE, and PCTUSED?
>
> Thanks!
>
>
Received on Tue Sep 07 1999 - 21:39:03 CDT
![]() |
![]() |