Xref: alice comp.databases.oracle.server:22259
Path: alice!news-feed.fnsi.net!news.idt.net!news-peer.gip.net!news.gsl.net!gip.net!news-peer.sprintlink.net!news-backup-east.sprintlink.net!news.sprintlink.net!165.166.15.6!news2.infoave.net!not-for-mail
From: "Bryan Michael Lenihan" <bryanle@lenisoft.com>
Newsgroups: comp.databases.oracle.server
Subject: Re: PCTFREE and INITTRANS
Date: Sat, 6 Jun 1998 02:24:06 -0400
Organization: Info Avenue Internet Services
Lines: 44
Message-ID: <6lanam$8eu$1@news1.infoave.net>
References: <6l9pa9$1os$2@news.worldonline.nl>
X-Newsreader: Microsoft Outlook Express 4.71.1712.3
X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3

On tables that are queried frequently and not updated (inserts are slightly
ok)  I use a pctfree of 5.  I do not use anything less than a 5 because I
know that there will be chaining if I do (for some reason even if the row is
not going to be updated)

On the initrans - you must ask yourself what are the chances that multiple
request will hit the particular block of data at the exact same time.  The
initrans parameter is just how many trans handles to default in the data
block. If you set your initrans to 1 and two people use the block at the
same time, Oracle will add another upto the maxtrans value.

If the chances are low that the block will be accessed by two or more (for
update) then you will not need to adjust the initrans.

Thanks,
Bryan Lenihan  (e-mail: bryanle@lenisoft.com)
Certified Oracle DBA
Lenihan Software and Consulting

John Vernes wrote in message <6l9pa9$1os$2@news.worldonline.nl>...
>Our biggest tables (40 and 20 million records) and in our application are
>used very frequently for querrying. We have allready set thePCTFREE to 10
>and INITTRANS is still set to 1.
>
>Those tables are very high on queries and very low on updates/deletes and
>somethings large batches of inserts.
>
>What problems could I encounter when I would set the PCTFREE extremely
>low???
>For instance 2 percent (<= Muchos data in data block)
>
>Would it be advisable to set the INITTRANS higher than 1??
>I ask this, because of the huge amount of data (40M records) and the
chanche
>of
>needing to have more transactions on the same block.
>
>Thanxs and Greetz
>
>John
>
>


