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

I have a dataset in which records start with


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

Active User


Joined: 24 Feb 2004
Posts: 131
Location: Chennai

PostPosted: Fri Sep 24, 2004 11:30 am
Reply with quote

hi

i hve a doubt. I hve a dataset in which records start with
1, 2 and 2 are thre, i want to retrieve only those records start with
1 and store in another dataset. How can i do ths ?

Can anyone help???

Col1 col2
1 df
2 dr
3 ew
1 rr
2 ss
1 pp

o/p will be ( in a new dataset)

Col1 Col2
1 df
1 rr
1 pp

thanks in advance

karthi G.
Back to top
View user's profile Send private message
sandip_datta

Active User


Joined: 02 Dec 2003
Posts: 150
Location: Tokyo, Japan

PostPosted: Fri Sep 24, 2004 12:49 pm
Reply with quote

Karthi,

Following SORT will give you the result -
Code:
//SORT01   EXEC PGM=SORT
//SORTLIB  DD   DSN=SYS1.SORTLIB,DISP=SHR
//SORTWK01 DD   UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
//SORTWK02 DD   UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
//SYSOUT   DD   SYSOUT=*
//SYSPRINT DD   SYSOUT=*
//SORTIN   DD   DSN=Your Input file,DISP=SHR
//SORTOUT  DD   DSN=Your output file
//SYSIN    DD   *
   SORT FIELDS=COPY
   INCLUDE COND=(1,1,ZD,EQ,1)
/*
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 FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts Allocated cylinders of a dataset DB2 12
Search our Forums:

Back to Top