IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Usage of SECTION - not to use ICETOOL but using SORT card


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Dev's

New User


Joined: 12 Mar 2007
Posts: 14
Location: Hyderabad

PostPosted: Fri Jun 08, 2007 6:51 pm
Reply with quote

Hi,

I have an input file with the records as below

123 M CS 64858
234 D DB 45645
434 D CS 64858

I want to sort and count this file as below

Source Count
CS 2
DB 1

Which means that the records should be counted based on one of the field(CS/DB)

My requirement is not to use ICETOOL but using SORT card
but no control card where we add one character to first position of all the records and count in sort

Can anyone help me
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Sat Jun 09, 2007 9:24 pm
Reply with quote

YK.Dev,

Here's a DFSORT job that will do what you asked for:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
123  M  CS 64858
234  D  DB 45645
434  D  CS 64858
/*
//SORTOUT DD SYSOUT=*
//SYSIN    DD    *
  SORT FIELDS=(9,2,CH,A)
  OUTFIL REMOVECC,NODETAIL,
    HEADER2=('Source',16:'Count'),
    SECTIONS=(9,2,
      TRAILER3=(9,2,16:COUNT=(EDIT=(IIIIT))))
/*
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Using Dynamic file handler in the Fil... COBOL Programming 2
Search our Forums:

Back to Top