Hello,
Does anyone have DB295 FixPack4? I am running the following query on it (XP SP2 or 3 local machine):
SELECT R.ROUTINESCHEMA, R.ROUTINENAME, R.SPECIFICNAME, R1.ROUTINESCHEMA, R1.ROUTINENAME, R1.SPECIFICNAME, R1.ROUTINETYPE FROM SYSCAT.ROUTINEDEP D, SYSCAT.ROUTINES R, SYSCAT.ROUTINES R1 WHERE D.ROUTINESCHEMA = R1.ROUTINESCHEMA AND D.BNAME = R.SPECIFICNAME AND D.ROUTINENAME = R1.SPECIFICNAME AND D.BTYPE IN ('F') AND R.ROUTINETYPE='P' AND R.ROUTINESCHEMA='DB2ADMIN' AND R.SPECIFICNAME='SQL090916170920800' AND R.ROUTINENAME='SP_PERFCNTR_SECONDARY' ORDER BY R.ROUTINESCHEMA, R.ROUTINENAME, R.SPECIFICNAME
;
where R.ROUTINESCHEMA='DB2ADMIN' is the schema of a procedure (any of them); R.SPECIFICNAME='SQL090916170920800' is the specific name of the procedure and R.ROUTINENAME='SP_PERFCNTR_SECONDARY' is the actual procedure name. Again, it does not matter what the procedure's body.
Must specify that the client version does not matter here.
The odd thing is that this query runs successfully on any other DB2 v9 version. (tried db295 FP3, etc.)
Can someone run this query as well for one of their procedures on DB2 v9.5 FP4? My server instance crashes, but gets back to normal when I restart it using "db2start".
PS: the error shown in server log is: "RETCODE : ZRC=0x87120007=-2028863481=SQLR_SEVERE_PGM_ERROR "Severe programming error" DIA8516C A severe internal processing error has occurred. " and it happens after this query.
Thank you.