Best Pctfree/ Pctused value for 90% of the columns are updated with number data types
Hi
I have a table with below structure.
LOCN_CODE NOT NULL VARCHAR2(3)
ITEM_CODE NOT NULL VARCHAR2(13)
ITEM_TYPE NOT NULL VARCHAR2(1)
SUPL_CODE NOT NULL VARCHAR2(4)
ITEM_LRCVD_DATE DATE
ITEM_FRCVD_DATE DATE
ITEM_SOLD_DATE DATE
FC_RATE NUMBER(12,3)
WAC NUMBER(10,3)
ORGN_PRICE NUMBER(10,3)
RETL_PRICE NUMBER(10,3)
ST_CODE NOT NULL NUMBER(4)
OPN NUMBER(6)
GRN NUMBER(6)
SAL NUMBER(6)
TRAN NUMBER(6)
PRN NUMBER(6)
SAD NUMBER(6)
DMG NUMBER(6)
WH_QTY NUMBER(6)
SR_QTY NUMBER(6)
The NOT NULL columns will be inserted first and all other columns
will be null. We update the other columns on everyday basis whenver transaction occur.
What will be the best suiting values of Pctfree and Pctused
parameters for the above table.
Can I keep pctfree as 0 since the columns to be updated are
number and date types?
IF the above is sure, I can use pctused 95 for the same.
Thanks
Giri