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

How to Sort a numeric data using Dfsort


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

New User


Joined: 21 Jul 2005
Posts: 6

PostPosted: Mon Jul 23, 2007 6:52 pm
Reply with quote

Hi ,
In DFsort , My control card is sorting on bases of character mode , plz let me know the control card to sort the numeric data (not the packed decimal feilds)

intially : 19,32,20,

output(error) : 10,29,39

Required output :19,20,32

thanks
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Mon Jul 23, 2007 6:55 pm
Reply with quote

What does the control card that produces the wrong data look like?
Back to top
View user's profile Send private message
ksssrikanth

New User


Joined: 21 Jul 2005
Posts: 6

PostPosted: Mon Jul 23, 2007 7:00 pm
Reply with quote

output(error) : 10,29,32

sort fields = (1,2,ch,a)
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Mon Jul 23, 2007 7:07 pm
Reply with quote

these three records input
Code:
19
32
20
caused this output
Code:
10
29
32
using this sortcard?
sort fields = (1,2,ch,a)
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: Mon Jul 23, 2007 8:41 pm
Reply with quote

ksssrikanth,

It's not clear from your post what you're trying to do. In fact, I can't make any sense out of it at all. You show three values for input (19,32,20) and three completey different values for output (10,29,39). Where did those output values come from?

You need to explain clearly what you're trying to do. Give an example of the records in your input file and what you expect for output. Give the RECFM and LRECL of the input file. Give the starting position, length and format of the relevant fields.
Back to top
View user's profile Send private message
ksssrikanth

New User


Joined: 21 Jul 2005
Posts: 6

PostPosted: Tue Jul 24, 2007 8:50 am
Reply with quote

Hi ,
i am giving the example

input :

19
18
254
2
206
245
26

output : SORT FIELDS=(1,4,CH,A)

18
19
2
206
245
254
26

But i need the Sort to be done on numeric base not on the character mode

Excepted output :
2
18
19
26
206
245
254

thanks
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: Tue Jul 24, 2007 10:24 pm
Reply with quote

Ah, why didn't you say so in the first place. You can use this DFSORT statement:

Code:

   SORT FIELDS=(1,4,UFF,A)
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 Issues Converting From ZD to Signed N... DFSORT/ICETOOL 4
No new posts Store the data for fixed length COBOL Programming 1
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 Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
Search our Forums:

Back to Top