View previous topic :: View next topic
Author
Message
BlackScreen_Hustle New User Joined: 20 May 2024Posts: 12 Location: India
I am trying to compress a very large mainframe file (>20GB).
This is the card of the PKZIP job -
Code:
//WUTZP02 EXEC PGM=PKZIP,TIME=30
//INDD1 DD DSN=<Input File>,
// DISP=SHR
//ARCHOUT DD DSN=<Compressed file>,
// DISP=(NEW,CATLG,DELETE),RECFM=FB,LRECL=13000,
// DATACLAS=MB100,DSORG=PS
//ARCHTEMP DD SPACE=(CYL,(500,500),RLSE)
//SYSIN DD DSN=SYS5.PRODNWL.PARMLIB(WUTZIP01),DISP=SHR
-ECHO
-ARCHOUTDD(ARCHOUT)
-TEMP_VOLUMES(,,,99)
-INDD(INDD1)
/*
//SYSPRINT DD SYSOUT=*
I added the ACHTEMP and the TEMP_VOLUMES to increase temp file size. Still I am getting the below errors -
ZPFM121E File Put Error (EE837008): SYS00002....
ZPCO084W TEMPFILE I/O error FMCB: 276224D0 SYS24....
ZPCE009E WriteData ACCOCQMR Error=8 ....
Any idea to resolve the issues ? Thanks
Back to top
Robert Sample Global Moderator Joined: 06 Jun 2008Posts: 8700 Location: Dubuque, Iowa, USA
Your ARCHTEMP is probably not big enough -- it may only hold about 6 GB. I would try
Back to top
sergeyken Senior Member Joined: 29 Apr 2008Posts: 2141 Location: USA
Robert Sample wrote:
Your ARCHTEMP is probably not big enough -- it may only hold about 6 GB. I would try
Also: multivolume space may be needed, and/or DATACLAS - as per your system requirements
Back to top
BlackScreen_Hustle New User Joined: 20 May 2024Posts: 12 Location: India
Thanks! I added CYL,(2000,2000) and VOL=(,,,20) for the ARCHTEMP but still getting the same error..
Back to top
Joerg.Findeisen Senior Member Joined: 15 Aug 2015Posts: 1335 Location: Bamberg, Germany
I would also add the VOL parameter to ARCHOUT. If that doesn't help, add DSNTYPE=EXTPREF too.
Back to top
sergeyken Senior Member Joined: 29 Apr 2008Posts: 2141 Location: USA
BlackScreen_Hustle wrote:
getting the below errors -
ZPFM121E File Put Error (EE837008): SYS00002....
ZPCO084W TEMPFILE I/O error FMCB: 276224D0 SYS24....
ZPCE009E WriteData ACCOCQMR Error=8 ....
Any idea to resolve the issues ? Thanks
Any other information details, extra messages, error codes, whatever?
For test purposes: try to run the same JCL with a smaller input dataset; just to verify it is ONLY size problem, not something else.
Back to top
Joerg.Findeisen Senior Member Joined: 15 Aug 2015Posts: 1335 Location: Bamberg, Germany
As it indicates, if your pool has enough volumes, change VOL=(,,,20) to VOL=(,,,59). If it fails again, reduce PRI/SEC allocation to 500,200
Sometimes is less more.
Back to top
Please enable JavaScript!