View previous topic :: View next topic |
Author |
Message |
Phantom Data Mgmt Moderator

Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Wed Jul 20, 2005 5:43 am Post subject: Reading members from a dataset with DSORG - 'DA' |
|
|
Hi,
In our shop I found that a PDS is defined with Dataset Organization 'DA', Record Format = 'F', LRECL = '0' and BLKSIZE = '27998'.
I am unable to read members from this dataset. I also tried writing a small SORT and forced the LRECL and RECFM of SORTIN to 80 & FB respectively. But didn't work out. It either gave me an INVALID LRECL/BLKSIZE error or ends in a I/O error reading SORTIN.
Code: |
//SORTIN DD DSN=MY.INPUT.FILE,
// DISP=SHR,DCB=(LRECL=80,RECFM=FB,BLKSIZE=8000)
|
Is there any way to convert this dataset to a normal PDS or read the contents from this dataset ?
Thanks & Regards,
Phantom |
|
Back to top |
|
 |
Phantom Data Mgmt Moderator

Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
|
Back to top |
|
 |
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Wed Jul 20, 2005 11:56 pm Post subject: |
|
|
I think, a DA dataset is accessed as DSNTYPE=LIBRARY in the DD statement. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
 |
|
|