Re: How to allocate multiple uncataloged datasets?

2008-05-10 Thread Mark Zelden
On Fri, 9 May 2008 16:02:56 -0500, Ron MacRae [EMAIL PROTECTED] wrote: Ladies and gents, 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

How to allocate multiple uncataloged datasets?

2008-05-09 Thread Ron MacRae
Ladies and gents, 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

Re: How to allocate multiple uncataloged datasets?

2008-05-09 Thread Lizette Koehler
. 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

Re: How to allocate multiple uncataloged datasets?

2008-05-09 Thread Ted MacNEIL
TSO CONCAT(DD1 DD2 etc...) I don't think that's the exact syntax... 'command(...' is not valid. The CONCAT is on the CBT TAPE File 535 Also, didn't CONCAT have some issues with FREE? Mind you, I haven't used it since 1988, so I could be wrong in my recollection (... or 'blowing smoke' ...).