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

How do you SORT


IBM Mainframe Forums -> Suggestions & Feedback
Post new topic   Reply to topic
View previous topic :: View next topic  

Which SORT you are using
DFSORT
65%
 65%  [ 78 ]
SYNCSORT
32%
 32%  [ 39 ]
CASORT
0%
 0%  [ 0 ]
Others
0%
 0%  [ 0 ]
Don't know
1%
 1%  [ 2 ]
Total Votes : 119

Author Message
priya

Moderator


Joined: 24 Jul 2003
Posts: 568
Location: Bangalore

PostPosted: Thu Jun 30, 2005 12:38 am
Reply with quote

Which tool you are using to SORT?
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: Sun Aug 07, 2005 8:32 pm
Reply with quote

Somebody voted "Don't Know". For anybody else who doesn't know, here's a way to find out. Run this job:

Code:

//S1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD *
//SORTOUT DD DUMMY
//SYSIN DD *
   SORT FIELDS=(1,1,CH,A)
/*


Now look at the messages in //SYSOUT. If you see ICE messages (e.g. ICE000I), then you're using DFSORT. If you see WER messages, you're using Syncsort. If you see CAS messages, you're using CA-Sort.
Back to top
View user's profile Send private message
priya

Moderator


Joined: 24 Jul 2003
Posts: 568
Location: Bangalore

PostPosted: Wed Aug 10, 2005 8:18 pm
Reply with quote

Thanks Frank...

DFSORT Rocks!!! (I believe our FRANK and his helping mind is the reason for that, what you feel?)
Back to top
View user's profile Send private message
shivashunmugam Muthu

Active User


Joined: 22 Jul 2005
Posts: 114
Location: Chennai

PostPosted: Thu Aug 11, 2005 9:22 am
Reply with quote

Yes..I agree too

Hats off to Frank!!!!!
Back to top
View user's profile Send private message
shivashunmugam Muthu

Active User


Joined: 22 Jul 2005
Posts: 114
Location: Chennai

PostPosted: Thu Aug 11, 2005 11:55 am
Reply with quote

Frank,

I jus ran the JOB given by you to identify which SORT we are using. I hv seen 'WER' msgs..so i gonna polled to SYNCSORT...

Meanwhile I jus came to know that we had used some ICETOOL steps in our existing jobs....

What do u say then?
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: Thu Aug 11, 2005 9:08 pm
Reply with quote

Quote:
I jus ran the JOB given by you to identify which SORT we are using. I hv seen 'WER' msgs..so i gonna polled to SYNCSORT...

Meanwhile I jus came to know that we had used some ICETOOL steps in our existing jobs....


DFSORT's ICETOOL is a fully documented, fully supported feature of DFSORT (has been since 1991). SYNCTOOL is undocumented, unsupported code in Syncsort that only supports a subset of the features provided by DFSORT's ICETOOL. Syncsort has chosen to use ICETOOL as an alias for SYNCTOOL. So if you have Syncsort and you specify PGM=ICETOOL, you'll use SYNCTOOL. If you only use the subset of DFSORT/ICETOOL functions that SYNCTOOL supports, then your job will work. If you try to use functions supported by DFSORT's ICETOOL that are not supported by SYNCTOOL, then your job will fail.
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 -> Suggestions & Feedback

 


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 Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top