Frank Yaeger Sort Forum Moderator

Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
|
Posted: Fri Jul 25, 2003 10:31 am Post subject: |
|
|
If you mean one input data set and more than one output data set, then the answer is yes. For example, the following DFSORT job copies the SORTIN data set to three output data sets (OUT1, OUT2 and OUT3).
Code: |
//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=... input file
//OUT1 DD DSN=... output file 1
//OUT2 DD DSN=... output file 2
//OUT3 DD DSN=... output file 3
//SYSIN DD *
OPTION COPY
OUTFIL FNAMES=(OUT1,OUT2,OUT3)
/*
|
Many variations are possible. If you want to know something specific, you'll need to ask a more specific question. _________________ Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort |
|