09-29-06 12:30 AM
The infocenter for WebSphere Portal 6 is incorrect. I found the resolution.
The DB2 config parameter sortheap_thres does not exist (see the following co
mmands). It is actually called SHEAPTHRES.
So the infocenter instructs you to run this command:
db2 "UPDATE DBM CFG USING sortheap_thres 50000"
But you should really run this command:
db2 "UPDATE DBM CFG USING SHEAPTHRES 50000"
db2inst1@portal6db:~> DB2 get dbm cfg | grep -i sort
Sort (DFT_MON_SORT) = OFF
Sort heap threshold (4KB) (SHEAPTHRES) = 20000
db2inst1@portal6db:~> DB2 "UPDATE DBM CFG USING SHEAPTHRES 50000"
DB20000I The UPDATE DATABASE MANAGER CONFIGURATION command completed
successfully.
db2inst1@portal6db:~> DB2 get dbm cfg | grep -i sort
Sort (DFT_MON_SORT) = OFF
Sort heap threshold (4KB) (SHEAPTHRES) = 50000
db2inst1@portal6db:~>
[ Post a follow-up to this message ]
|