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

File sorting without effecting header and trailer record.


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

New User


Joined: 11 Dec 2008
Posts: 9
Location: Chennai

PostPosted: Wed Jul 22, 2009 4:23 pm
Reply with quote

I have a file of record length 300.The first and the last record is header and trailer record.The data records are present between the header and trailer record. The first four bytes of all the records is the identifier field and it is numeric.

My requirement is to sort only the Data records and get a sorted file without any change to header and footer records in the output file using DFSORT.

Can anyone help me out

Thanks in Advance!!
Back to top
View user's profile Send private message
expat

Global Moderator


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

PostPosted: Wed Jul 22, 2009 4:30 pm
Reply with quote

Not with the small amount of information that you have provided, no.

Which SORT product are you using, DFSORT, SYNCSORT, CA-SORT
What are the 4 bytes to distinguish the different records (header, trailer,data)
What is the RECFM of the file
Where are the sort key(s) for the file, and the length(s)
What format are the sort key(s)
Back to top
View user's profile Send private message
Divyananda

New User


Joined: 11 Dec 2008
Posts: 9
Location: Chennai

PostPosted: Wed Jul 22, 2009 4:40 pm
Reply with quote

I use DFSORT sort product

The first four Bytes is record identifier and also numeric numeric data type -
1121 : to Identify Header record
1122 : to identify Trailer record
nnnn : any numerical combination for data records.

The record format is FB,

The first four bytes is the sort key and length is 4 Bytes

The sort key format is ZD.

for more Information-
the record structure is

01 ABC-REC
05 REC-IDNTFR PIC 9(4).
05 REC-INFO PIC X(296).
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: Wed Jul 22, 2009 9:09 pm
Reply with quote

Here's a DFSORT/ICETOOL job that will do what you asked for:

Code:

//S1   EXEC  PGM=ICETOOL
//TOOLMSG   DD  SYSOUT=*
//DFSMSG    DD  SYSOUT=*
//IN DD DSN=...  input file (FB/300)
//OUT DD DSN=...  output file (FB/300)
//TOOLIN DD *
DATASORT FROM(IN) TO(OUT) HEADER TRAILER USING(CTL1)
/*
//CTL1CNTL DD *
  SORT FIELDS=(1,4,ZD,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 FTP VB File from Mainframe retaining ... JCL & VSAM 1
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top