Two simple DFSORT jobs (one COPY and one SORT).

One calls the COPY function using an INCLUDE which eliminates all the records.
The second calls the SORT function with the same INCLUDE eliminating all the 
records so the final SORT is never executed.

The OPTION COPY does the same number of EXCPS but uses ½ the CPU and does 
larger I/Os (3-4 times as large) as the SORT.  It also runs 4 times as fast as 
the SORT.

The problem with slow SORT appears to be related to the small number of buffers 
used for the SORT function versus the OPTION COPY.

How do we allocate more buffers or storage for the SORTIN file?

Thanks,

   OPTION COPY
     INCLUDE COND=(26,6,CH,EQ,C'NEVERF')

And

INCLUDE COND=(26,6,CH,EQ,C'NEVERF')
             SORT   FIELDS=(22,4,CH,A)



Neil E. Ervin

Mainframe Performance Analyst
Mainframe/Midrange Services

Wells Fargo Compute Platform Services  l  North Carolina (Eastern Time Zone)
MAC D1112-023
Cell 910-477-2536 l  Text Pager: 
[email protected]<mailto:[email protected]>

[email protected]<mailto:[email protected]>

TOG 
Recognition<http://teamworks.portal.wellsfargo.com/portal/site/teamworks/menuitem.bc20064d3988cfc006d0c110cd2db1a0/?vgnextoid=e14ce1890b6af010VgnVCM1000008c321b0aRCRD>


----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to