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

sort in ascending order


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

New User


Joined: 20 Apr 2007
Posts: 13
Location: chennai

PostPosted: Thu Feb 16, 2012 1:29 pm
Reply with quote

dear all,

I opened one pds member and then i typed some contents,now when i type SORT in command line.it provides sorted output in ascending order.so i considered ASCENDING is default.

But when i tried the following code,its showing error.

for example:

Code:

//jobcard
//step exec pgm=sort
//sysprint dd sysout=*
//sysout dd sysout=*
//sortin dd dsn=inputfile...,disp=shr
//sortout dd dsn=outputfile..,disp=shr
//sysin dd *
     sort fields=(1,1,ch)
/*


Note:i voluntarily removed "A" after "CH" in sort control statement.

May i know the reason for this......
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: Fri Feb 17, 2012 12:22 am
Reply with quote

The syntax for the DFSORT SORT FIELDS operand requires A or D (or E). There is no default. So you can specify:

Code:

   SORT FIELDS=(1,1,CH,A)

or

   SORT FIELDS=(1,1,A),FORMAT=CH

or

   SORT FORMAT=CH,FIELDS=(1,1,A)


but you can't omit the A.

All of the DFSORT syntax is documented in "z/OS DFSORT Application Programming Guide" and you must abide by it or you will get errors. You can find all of the DFSORT books at:

www.ibm.com/support/docview.wss?rs=114&uid=isg3T7000080
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Feb 17, 2012 12:27 am
Reply with quote

I believe Inba is confusing the SORT primary command of ISPF Edit with DFSORT. Bottom line: they are different products developed by different people (although both for IBM), so there is no reason that they should have identical interfaces.
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 JCL sort card - get first day and las... JCL & VSAM 9
No new posts Rotate partition-logical & physic... DB2 0
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top