Hi All,
One of my tables has a BLOB column, in which I will store Excel Files. Now this particular Column will be updated very frequenty. I have taken the precaution of putting the BLOB column on a eparate tablespace.
What should be the optimal value of PCTUSED parameter?
Hi,
By default the value of PCTUSED is 40 and PCTFREE is 10 but I usually keep the value of PCTUSED to 60 and PCTFREE to 25 to reduce the contention on FREELISTS.
Rohit is right in the direction meaning that if PCTUSED and PCTFREE are not set properly, you can waste time placing blocks onto and taking blocks off the freelist.
Run
Code:
select table_name, NUM_FREELIST_BLOCKS from user_tables;
to see the number of blocks being placed on and taken off the freelists.
This is my opinion: if you NUM_FREELIST_BLOCKS is more than 1% of the blocks of the table, then you may have a problem. May have!
Oracle Certified Master
Oracle Certified Professional 6i,8i,9i,10g,11g
email: ocp_9i@yahoo.com
Will increasing the value of freelist help?
Second for normal columns using Pctfree and PCTUSED is ok, here I am concerned with a column which is BLOB in nature and is updated frequently.
Bookmarks