Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to determine whether a dataset is sorted or not?

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
killer

New User


Joined: 16 Sep 2005
Posts: 3

PostPosted: Fri Sep 16, 2005 11:22 am    Post subject: How to determine whether a dataset is sorted or not?
Reply with quote

Hi all

I'd like to know if/how it is possible to use DFSORT/ICETOOL to just determine if a dataset is sorted or not, and then give a suitable returncode. I'd like to invoke the sort from JCL.

regards

Killer
Back to top
View user's profile Send private message
References
mallikiran

Active User


Joined: 07 Sep 2005
Posts: 52

PostPosted: Fri Sep 16, 2005 9:12 pm    Post subject:
Reply with quote

Sort the input file in the order you expect it be sorted and then compare the original file and sorted file using SUPERC. SUPERC reports differences even if the order of the records are different.
If RC=1, then the input file was not sorted, if RC=0, then the input file was sorted.
Back to top
View user's profile Send private message
Alain Benveniste

Active User


Joined: 14 Feb 2005
Posts: 90

PostPosted: Sun Sep 18, 2005 2:08 pm    Post subject:
Reply with quote

Killer,

If the file is sorted you will have RC=0, if not RC=16
Code:

//STEP0001 EXEC PGM=ICEMAN
//SYSOUT   DD SYSOUT=*     
//SORTOUT  DD SYSOUT=*     
//SORTIN01 DD *           
02                         
03                         
01                         
/*                         
//SYSIN DD *               
  MERGE FIELDS=(1,2,ZD,A) 
/*

Alain
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1