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

to copy last 50 records of a flat file


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
krishnareddymsc

New User


Joined: 08 Jan 2007
Posts: 9
Location: Bangalore

PostPosted: Thu Jan 11, 2007 3:56 pm
Reply with quote

How can we copy last 50 records from a flat file to another file....as we dont know tha max number of records in that file.....and also pls explain for the same with ksds files........thanku...............
Back to top
View user's profile Send private message
Bitneuker

CICS Moderator


Joined: 07 Nov 2005
Posts: 1104
Location: The Netherlands at Hole 19

PostPosted: Thu Jan 11, 2007 3:59 pm
Reply with quote

Repro with IDCAMS to dummy-file and you know the number of records. Then repro with SKIP total number minus 50. Also check the sortforum where Frank offers a lot of solutions.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Thu Jan 11, 2007 7:31 pm
Reply with quote

You sort the dataset, adding a sequential counter to the end of each record.

Then, you sort the data on the sequential counter in descending order, stopping after 50 records.

Finally, resort the data on the sequential counter in ascending order, and remove the count value from the output.
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 Jan 11, 2007 10:41 pm
Reply with quote

You can use the technique shown in the "Keep the last n records" Smart DFSORT Trick at:

www.ibm.com/servers/storage/support/software/sort/mvs/tricks/
Back to top
View user's profile Send private message
krishnareddymsc

New User


Joined: 08 Jan 2007
Posts: 9
Location: Bangalore

PostPosted: Fri Jan 12, 2007 2:16 pm
Reply with quote

Hi all,
thanx for your nice reply..........I think I gt my answer.....with your views....sone more thing...can you explain the same...with VSAm Ksds files......?
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Sun Jan 14, 2007 12:27 pm
Reply with quote

You can use this for flat files too.
Code:

//COPYKEY EXEC PGM=FILEAID
//DD01     DD  DSN=YOUR.VSAM.FILE
//DD01O    DD  DSN=file.contains.50highest.key.recs
//SYSIN    DD  *
$$DD01 COPYBACK OUT=50
/*
//*
//NEXT    EXEC PGM=....
//HIGHKEY DD DSN=file.contains.50highest.key.recs,
//etc....
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
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
Search our Forums:

Back to Top