Storage pool paging option effect on database performance
The paging option of shared pools can have a significant impact on the performance of reading and changing database files.
- A paging option of *FIXED causes the program to minimize the amount of
memory it uses by:
- Transferring data from auxiliary storage to main memory in smaller blocks
- Writing file changes (updates to existing records or newly added records) to auxiliary storage frequently
- A paging option of *CALC might improve how the program performs when it
reads and updates database files. In cases where there is sufficient memory
available within a shared pool, the program might:
- Transfer larger blocks of data to memory from auxiliary storage.
- Write changed data to auxiliary storage less frequently.