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

sort card to display timestamp & no of occurance of it


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
gargi koley

New User


Joined: 11 Jan 2008
Posts: 10
Location: satyam gateway,hi-tech citi,hyderabad

PostPosted: Wed Mar 12, 2008 12:12 pm
Reply with quote

hi all,

i need to get a sort card for a input file which has been already sorted based on account number (acen).

The input file looks like:

Acct No. Timestamp

1 T1
2 T2
3 T1
4 T3
5 T1
6 T2

The output file should look like :

Timestamp Count

T1 3
T2 2
T3 1

The comparision for the Timestamp is required only for date filed(1:10)[/u]
Back to top
View user's profile Send private message
murmohk1

Senior Member


Joined: 29 Jun 2006
Posts: 1436
Location: Bangalore,India

PostPosted: Wed Mar 12, 2008 1:07 pm
Reply with quote

Gargi,

This should suffice your requirement -

www.ibmmainframes.com/viewtopic.php?t=28591&highlight=count
Back to top
View user's profile Send private message
gargi koley

New User


Joined: 11 Jan 2008
Posts: 10
Location: satyam gateway,hi-tech citi,hyderabad

PostPosted: Wed Mar 12, 2008 2:27 pm
Reply with quote

hi murali

i am not able to open the link
can u get me the right link

thanks & regards
gargi
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: Wed Mar 12, 2008 9:36 pm
Reply with quote

You can use a DFSORT like the following to do what you asked for:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
    1                                  T1
    2                                  T2
    3                                  T1
    4                                  T3
    5                                  T1
    6                                  T2
/*
//SORTOUT DD SYSOUT=*
//SYSIN    DD    *
  SORT FIELDS=(40,2,CH,A)
  OUTFIL REMOVECC,NODETAIL,
    SECTIONS=(40,2,
      TRAILER3=(5:40,2,32: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 To get the count of rows for every 1 ... DB2 3
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top