Tuesday, November 3, 2009

Error in Wrkprb with QWPZHPT1 having SRCB900FDC7

This is for QWPZHPT1 with SRCB900FDC7 and Symptom string 5722 SP/QWPZHPT1 MSGINERROR RC2010.
I got this error in wrkprb and checked in the system. I found RC2010 value indicates that the Host Print Transform (QWPZHPTR, QwpzHostPrintTransform) API was called with invalid data input parameters.Actually HPT found less complete pages in input buffer than the number of pages which were claimed by API.

Sunday, November 1, 2009

Sometime we need to know what are the largest objects in my system.

Sometimes we see system space has grown up and need to do Disk Analysis, Also as an administartor for iSeries, you should always keep an eye on your system's space.

We can use below commands- 
SBMJOB CMD(DSPOBJD OBJ(*ALL) OBJTYPE(*ALL) OUTPUT(*OUTFILE) OUTFILE(QGPL/OBJECT)) JOB(RAJ)

Once the job is completed, start sql and run


SELECT ODOBNM, ODLBNM, ODOBTP, (ODSIZU * ODBPUN) FROM QGPL/OBJECT
ORDER BY (ODSIZU * ODBPUN) DESC


Biggest one will be at the top of list.


Later delete the out file.
DLTF QGPL/OBJLIST