I guess you are using TSO ALLOCATE Command but I am not sure if this is
CLIST or REXX or some other process.
But basically you will need to allocate each individual data set on a
separate DD then concatenate the DDs.
For example
TSO ALLOCATE DD(DD1) DA(dsn1) VOL(vol1) SHR
TSO ALLOCATE DD(DD2) DA(dsn2) VOL(vol2) SHR
And so on
Then the input file of your dreams would be
TSO CONCAT(DD1 DD2 etc...)
The CONCAT is on the CBT TAPE File 535
Lizette
[>] --> SNIP
If I want to ALLOCATE an uncataloged dataset in a rexx exec I can issue -
"alloc dataset('DSN1') file(MYDD) volume(VOL1) shr".
How do I ALLOCATE multiple uncataloged datasets?
"alloc dataset('DSN1' 'DSN2') file(MYDD) volume(VOL1 VOL2) shr"
doesn't work.
If I allocate either file individually I get the correct, uncataloged, files
allocated.
If I allocate both together I get the cataloged versions.
What am I doing wrong?
How do you allocate multiple uncataloged versions of datasets?
[>] --> UnSnip
----------------------------------------------------------------------
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