Table Fragmentation and Siebel EIM
Prior to running EIM it is important to clean up fragmented objects, especially those that will be used during the EIM processing. The following SQL statement can be used to identify objects with greater than 10 extents:
SELECT segment_name,segment_type,tablespace_name,extents
FROM dba_segments
WHERE owner = (Siebel table_owner)
and extents > 9;
To fix fragmentation, the objects will need to be rebuilt with appropriate storage parameters. Always be careful when rebuilding objects because of defaults, triggers, etc. on the objects.
Optimizer Mode
Oracle optimization mode can also affect EIM performance. The Siebel application has been found to perform better under RULE based optimization under normal application usage. While there have been cases where it has been found that Cost based optimization has improved EIM performance this should only be attempted as a last resort and must be switched back to RULE for online usage. Be aware that Siebel only supports Rule-Based optimization. Optimization mode can be verified by running the following query:
SELECT NAME, VALUE FROM V$PARAMETER WHERE NAME = ‘OPTIMIZER_MODE’;
(must have DBA privilege)
Related Articles:
Browse Categories
User login
Navigation
Popular content
- Autosys Job Handling (13,610)
- GE UNIVERSAL REMOTE INSTRUCTIONS (12,358)
- Siebel User properties (9,094)
- Test 1 - NC Drivers License Test - DMV Question Dump (8,770)
- Making a View "Read Only" based on a criteria: Aspect User Property (4,216)
- Siebel Application Response Measurement (SARM) (4,144)
- Siebel Predefined Queries (PDQ) – Reference (4,080)
- Siebel Server Component Event Logging (3,662)
- Strategies for Building Team Cohesion (3,154)
- How to create the EBC’s in Siebel (3,085)
Readers who viewed this page, also viewed:
- How to Troubleshoot Database Errors Caused by Deleting Repositories using Siebel Tools (53.8%)
- Tracing Siebel server task with SQL Trace and TKPROF in Oracle (53.8%)
- Real time Siebel EIM (Enterprise Integration Manager) Interview Questions – Part 4 (53.8%)
- EIM Tuning - Reference (53.8%)
- Siebel session hints (53.8%)
- How are index hints used in an EIM process (46.2%)
- Siebel Server Component Event Logging (46.2%)
- OBIEE Interview Questions and Answers FAQ (38.5%)
- Database Tuning Tips for EIM - DB2 UDB (38.5%)
- Handling EIM Failures after Siebel Upgrade (38.5%)
