On 7/27/2011 7:12 AM, esmie moo wrote:
The use of AMASPZAP is restricted. No can do. Thanks for the suggestion.
You can get a dump of a member with IDCAMS: //IDCAMS JOB //PRINT EXEC PGM=IDCAMS,REGION=64M //SYSPRINT DD SYSOUT=A //DSN1 DD DSN=your dsn(some member), // DCB=(RECFM=U,BLKSIZE=32760), // DISP=SHR //SYSIN DD * PRINT INFILE(DSN1) From this maybe you can figure out what the LRECL should be. If the records appear to have a length in front of them, try RECFM=VB, otherwise try FB. Then pick the largest multiple that is less than or equal to 32760 for the BLKSIZE. If it's VB add 4. This is not an ideal BLKSIZE, but hopefully will let you read your members. Add a dummy member specifying these values and see if you can read the members (other than the one that caused this problem in the first place). -- Richard ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

