jyoung Beginner
Joined: 10 Nov 2005 Posts: 36 Topics: 2 Location: Flint, MI
|
Posted: Thu May 01, 2008 8:48 am Post subject: |
|
|
You would do it through your JCL. Here is a example:
Code: |
//SORTWK01 DD UNIT=&WORK, <--- SORT WORK SPACE
// SPACE=(CYL,(10),,CONTIG)
//SORTWK02 DD UNIT=&WORK, <--- SORT WORK SPACE
// SPACE=(CYL,(10),,CONTIG)
//SORTWK03 DD UNIT=&WORK, <--- SORT WORK SPACE
// SPACE=(CYL,(10),,CONTIG)
|
I have ten cylinders per sortwork area specified here. |
|