Hi,
Bmujeeb, that is correct!
Dr_suresh20, the easyes way to find out if windows page-ing is present do the following:
1. Start Task Manager
2. Click on Performance tab
3. In Physical Memory frame there is "Available" - that is the available real memory
4. In Commit Charge frame there is "Total" - this is used memory
5. If the "Available" > "Total" then you have a windows page-ing problem.
If you have the windows pageing problem, then try to stop all the applications that are not needed. Also stop services that are not needed.
On database there is the most common mistake to overlocate the bufferpools. So if the total amount of bufferpools are bigger then the real memory try to lower the bufferpools.
Execute the db2 command:
Code:
select * from sysibm.sysbufferpools
to see the amount of usage bufferpools.
Then manualy calculate the BufferpoolUsageInBytes = NPAGES * PAGESIZE. If more then one bufferpool is defined then calculate the BufferpoolUsageInBytes and sum the results from each row.
Hope this helps,
Grofaty