We are installing DI 11.7 and I am able to log onto the Management Console but when selecting Batch Job Status I receive the following error message: A system temporary table space with sufficient page size does not exist
Can someone tell me what TS size I need? We currently have a 4k size but obviously require more.
you will get this error for DB2 repository, is your DI repository on DB2 ?
if so, then create a buffer pool with size 8K or 16K in the repository database and create temp space using that buffer pool
I think for this you will need to change the view definition in DI Repository for view ALVW_HISTORY
in the view definition you will find the following comparison, which is cause this problem
change this
L.OBJECT_KEY = CAST ( SC.VALUE as numeric)
to
CAST (L.OBJECT_KEY as char) = SC.VALUE
if you are on DB2 Fix Pack 17, then you will run into another issue the history will dispaly the same job multiple time, the work around for that is to reverse the order of comparison with constant
move the constant from left hand side to right hand side of the comparison
change following
‘SYSTEM_CONFIG_INFO’ = SC.NAME
to
SC.NAME - ‘SYSTEM_CONFIG_INFO’
do this for all the constant in the view definition