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

Sort JCL


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

New User


Joined: 12 May 2006
Posts: 51
Location: India

PostPosted: Thu Nov 21, 2013 1:23 pm
Reply with quote

Hi ,

Whether a Sort card can give ,

To find the record count the Infile and write the count to Output file , if the count is less than 50

Say if Infile is having 100 Records , output file should be empty and If Infile is having 48 Output file should be like No of records Processed is 48

Thanks
Back to top
View user's profile Send private message
TheMFKid

New User


Joined: 20 Nov 2013
Posts: 91
Location: India

PostPosted: Thu Nov 21, 2013 1:48 pm
Reply with quote

Code:

SORT FIELDS=COPY                                         
   OUTFIL FILES=OUT,TRAILER1=(1:COUNT),REMOVECC,NODETAIL


This will help you count the number of records in your infile.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Thu Nov 21, 2013 2:03 pm
Reply with quote

Add a sequence number, in the appropriate place, to your records.

INCLUDE= on OUTFIL for that sequence less than/equal 50.. Format your output with BUILD.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Thu Nov 21, 2013 2:09 pm
Reply with quote

Of course you could easily enough use an IDCAMS PRINT with count option and conditionally execute one of two subsequent steps to either copy the dataset with input or to create an empty output.
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 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
No new posts how to calculate SUM for VB file usin... JCL & VSAM 1
Search our Forums:

Back to Top