View previous topic :: View next topic |
Author |
Message |
selva21 Beginner
Joined: 30 Dec 2003 Posts: 53 Topics: 31
|
Posted: Fri Apr 16, 2004 1:33 pm Post subject: DFSORT - Sort Work Files - Secondary Allocation Problem |
|
|
Hi,
We run Syncsort in our system. W have around 250 jobs that did not have a secondary allocation for Sort Work files.Now we are migrating to DFSORT. Syncsort will dynamically allocate additional work space when not enough space has been allocated in the sort work files. Dfsort does not do this. If no sort works are specified it will do the dynamic allocation. If they are specified it will use the specified amount. So we are getting space abends with DFSORT.
Is there any solution for this?
Thanks,
Selva. _________________ --------------------------------------------------------
Knowledge is power. But Imagination is more important than Knowledge. -Albert Einstein
-------------------------------------------------------- |
|
Back to top |
|
 |
Mervyn Moderator

Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
|
Posted: Fri Apr 16, 2004 2:22 pm Post subject: |
|
|
Guessing just a little here, but I'd start by removing SORTWK areas altogether. DFSORT is far more clever than you seem to think! _________________ The day you stop learning the dinosaur becomes extinct |
|
Back to top |
|
 |
Frank Yaeger Sort Forum Moderator

Joined: 02 Dec 2002 Posts: 1618 Topics: 31 Location: San Jose
|
Posted: Fri Apr 16, 2004 2:23 pm Post subject: |
|
|
I would suggest setting the DFSORT installation option DYNAUTO=IGNWKDD. This option tells DFSORT to automatically deallocate any JCL SORTWKs it finds and use dynamic allocation of work data sets instead. Allocating JCL SORTWKs that are too small without specifying secondaries is probably not a great strategy. Allowing DFSORT to allocate the work data sets (along with hiperspace, data space and now memory objects in z/OS DFSORT V1R5) dynamically is a better strategy. Removing the JCL SORTWKs would be the best long term solution, but using DYNAUTO=IGNWKDD will have the same effect without requiring JCL changes. If you specify DYNAUTO=IGNWKDD and need JCL SORTWKs for a specific job, you can use:
Code: |
//DFSPARM DD *
OPTION USEWKDD
/*
|
for that job.
Alternatively, of course, you could code secondaries for the JCL SORTWKs that you're having problems with. _________________ 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 |
|
Back to top |
|
 |
selva21 Beginner
Joined: 30 Dec 2003 Posts: 53 Topics: 31
|
Posted: Fri Apr 16, 2004 4:27 pm Post subject: |
|
|
Thanks Mervyn and Frank !!! _________________ --------------------------------------------------------
Knowledge is power. But Imagination is more important than Knowledge. -Albert Einstein
-------------------------------------------------------- |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Wed Oct 26, 2005 1:14 pm Post subject: |
|
|
Frank, is there an easy way to know if the DYNAUTO=IGNWKDD option is enabled? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Oct 26, 2005 1:21 pm Post subject: |
|
|
superk,
You can run the following JCL and see the installed defaults for DFSORT
Code: |
//STEP0100 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//OUT DD SYSOUT=*
//TOOLIN DD *
DEFAULTS LIST(OUT)
/*
|
After the completion of the job look at the output in OUT dd
Hope this helps...
Cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Wed Oct 26, 2005 1:25 pm Post subject: |
|
|
Yup, thanks, that did the trick. |
|
Back to top |
|
 |
chandra Beginner
Joined: 26 Sep 2003 Posts: 130 Topics: 36
|
Posted: Fri Jul 14, 2006 1:28 pm Post subject: |
|
|
Hi,
Can you please let me know what is the equalent option of DYNAUTO=IGNWKDD in syncsort
Thank you _________________ Regards,
Chandra |
|
Back to top |
|
 |
|
|