Quote:
|
Originally Posted by MarkhamDBA
- what does pctfree=-1 mean? (it's not in the documentation for some reason).
|
My guess would be that the value has not been specified when creating the index, and the default value is in effect.
Quote:
|
Originally Posted by MarkhamDBA
- what value of pctfree for OLTP environment should be used? (range)
|
That obviously depends on the number of inserts and updates to the indexed columns. The more changes you are making to the index, the higer PCTFREE should be. On the other hand, if you don't determine the particular index to be a performance bottleneck, you should probably leave PCTFREE alone.
Quote:
|
Originally Posted by MarkhamDBA
- is it necessarely used with cluster indexes or can be used with regular indexes too?
|
PCTFREE applies to any index.