IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

PKZIP error ZPFM121E and ZPCE009E


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
BlackScreen_Hustle

New User


Joined: 20 May 2024
Posts: 9
Location: India

PostPosted: Mon Jun 03, 2024 6:58 pm
Reply with quote

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
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8698
Location: Dubuque, Iowa, USA

PostPosted: Mon Jun 03, 2024 7:14 pm
Reply with quote

Your ARCHTEMP is probably not big enough -- it may only hold about 6 GB. I would try
Code:
CYL,(2000,2000)
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2050
Location: USA

PostPosted: Mon Jun 03, 2024 7:43 pm
Reply with quote

Robert Sample wrote:
Your ARCHTEMP is probably not big enough -- it may only hold about 6 GB. I would try
Code:
CYL,(2000,2000)

Also: multivolume space may be needed, and/or DATACLAS - as per your system requirements
Code:
VOL=(,,,20)
Back to top
View user's profile Send private message
BlackScreen_Hustle

New User


Joined: 20 May 2024
Posts: 9
Location: India

PostPosted: Mon Jun 03, 2024 8:10 pm
Reply with quote

Thanks! I added CYL,(2000,2000) and VOL=(,,,20) for the ARCHTEMP but still getting the same error..
Back to top
View user's profile Send private message
Joerg.Findeisen

Senior Member


Joined: 15 Aug 2015
Posts: 1280
Location: Bamberg, Germany

PostPosted: Mon Jun 03, 2024 9:13 pm
Reply with quote

I would also add the VOL parameter to ARCHOUT. If that doesn't help, add DSNTYPE=EXTPREF too.
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2050
Location: USA

PostPosted: Mon Jun 03, 2024 10:59 pm
Reply with quote

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
View user's profile Send private message
Joerg.Findeisen

Senior Member


Joined: 15 Aug 2015
Posts: 1280
Location: Bamberg, Germany

PostPosted: Tue Jun 04, 2024 9:46 am
Reply with quote

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
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts OpenPGP Decryption job getting LRECL ... IBM Tools 7
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts Error while running web tool kit REXX... CLIST & REXX 5
Search our Forums:

Back to Top