FREELIST Parameter
Multiple Siebel EIM processes can be executed against an EIM table
provided that they all use different batches or batch ranges. The
concern is that you might experience contention for locks on common
objects. To run multiple jobs in parallel against the same EIM table,
make sure that the FREELIST
parameter is set appropriately
for the tables and indexes used in the Siebel EIM processing.
PCTUSED
and FREELIST
parameters (and FREELIST groups) are ignored.Applicable database objects include EIM tables and indexes, as
well as base tables and indexes. The value of the FREELIST
parameter specifies the number of block IDs that will be stored
in memory which are available for record insertion. Generally, you
set the value to at least half of the intended number of parallel
jobs to be run against the same EIM table (for example, a FREELIST
setting of 10 permits up to 20 parallel jobs against
the same EIM table).
This parameter is set at the time of object creation and the default for this parameter is 1. To check the value of this parameter for a particular object, the following query can be used:
SELECT SEGMENT_NAME, SEGMENT_TYPE, FREELISTS
FROM DBA_SEGMENTS
WHERE SEGMENT_NAME='OBJECT NAME TO BE CHECKED';
To change this parameter, the object must be rebuilt. Again, be careful when rebuilding objects because of issues such as defaults or triggers on the objects.
To rebuild an object
Export the data from the table with the grants.
Drop the table.
Recreate the table with the desired
FREELIST
parameter.Import the data back into the table.
Rebuild the indexes with the desired
FREELIST
parameter.