Caching tables for EIM
One other measure that can help performance is to pin small tables that are frequently accessed in cache. The value of BUFFER_POOL_KEEP determines the 'keep pool', example, the portion of the buffer cache that will not be flushed by the LRU algorithm.
The 'keep pool' allows one to 'pin' certain tables in memory, thus improving performance for accessing those tables. This will ensure that after the first time that the table is accessed it will always be in memory. Otherwise it is possible that the table will get pushed out of memory and will require disk access the next time used. Keep in mind that the amount of memory allocated to the ‘keep’ area is subtracted from the overall buffer cache memory (defined by DB_BLOCK_BUFFERS).
A good candidate for this would be the S_LST_OF_VAL table. The syntax for pinning a table in cache is as follows:
ALTER TABLE S_LST_OF_VAL CACHE;
Related Articles:
Browse Categories
User login
Navigation
Popular content
- Autosys Job Handling (13,609)
- GE UNIVERSAL REMOTE INSTRUCTIONS (12,357)
- Siebel User properties (9,094)
- Test 1 - NC Drivers License Test - DMV Question Dump (8,769)
- 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,153)
- How to create the EBC’s in Siebel (3,085)
Readers who viewed this page, also viewed:
- OBIEE Interview Questions and Answers FAQ (22.2%)
- Data Stage - Lookup vs. Join Stages (22.2%)
- What are the various Enterprise Integration Manager Interface Table Keys and do they need to be populated (22.2%)
- How can users export System fields of an Integration Object?. (11.1%)
- JMSReceiver fails with error "SBL-EAI-05006: Failed to load the JVM Dll" (11.1%)
- How to define Siebel CRM specific service fields (Fault, Header) in .WSDL, generated for a Siebel Inbound Web Service? (11.1%)
- How To Invoke Inbound Web Service Locally Using Web Service Inbound Dispatcher (11.1%)
- How To Use Local Web Service (11.1%)
- Siebel Webservice And EAI - Basic Concepts ans Steps Involved (11.1%)
- Known Scripting performance issues (11.1%)
