View previous topic :: View next topic |
Author |
Message |
rajeshkoratti Beginner
Joined: 14 Feb 2006 Posts: 42 Topics: 22
|
Posted: Wed Jun 27, 2012 3:06 pm Post subject: Intermittent problem while zipping datasets |
|
|
I have JCL running in my shop which zips a large dataset (about 500 CYLS) which is a VB with a reclenght of 8192.
The JCL executes a IKJEFT01.
Code: |
//STEP070 EXEC PGM=IKJEFT01,REGION=50M,DYNAMNBR=100
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
zip -a 'my.file' 'my.file.zip'
/*
|
The step works fine in most of the cases. However occassionaly it fails with the following error
Code: |
zip warning: name not matched: 'my.file'
zip error: Nothing to do! ('my.file.zip')
|
I feel it is due to the large size of the dataset,
i would like to get some advice on how to resolve this occasional problem _________________ Thanks and Regards..
Rajesh |
|
Back to top |
|
 |
rajeshkoratti Beginner
Joined: 14 Feb 2006 Posts: 42 Topics: 22
|
Posted: Wed Jun 27, 2012 3:36 pm Post subject: |
|
|
correction to the JCL
Code: |
//STEP070 EXEC PGM=IKJEFT01,REGION=50M,DYNAMNBR=100
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
zip -a 'my.file.zip' 'my.file'
/*
|
_________________ Thanks and Regards..
Rajesh |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Jun 27, 2012 3:40 pm Post subject: |
|
|
rajeshkoratti,
Is this running on Linux? You need to post all the error messages along with Message ID's.
Kolusu |
|
Back to top |
|
 |
rajeshkoratti Beginner
Joined: 14 Feb 2006 Posts: 42 Topics: 22
|
Posted: Fri Jul 06, 2012 3:06 pm Post subject: |
|
|
Kolusu
Nope, it is JCL running on the mainframe. And I'm afraid this is the only error message i get. _________________ Thanks and Regards..
Rajesh |
|
Back to top |
|
 |
papadi Supermod
Joined: 20 Oct 2009 Posts: 594 Topics: 1
|
Posted: Fri Jul 06, 2012 3:19 pm Post subject: |
|
|
What informational output is generated when the zip is successful?
What is in the JESxxxx sysouts for the problem execution? _________________ All the best,
di |
|
Back to top |
|
 |
|
|