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

Fetching the records


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

Active User


Joined: 28 Aug 2007
Posts: 131
Location: At Desk

PostPosted: Mon Mar 30, 2009 3:42 pm
Reply with quote

Hi All,


Below Mentioned is the INPUT DSN which contains the name of files.

Code:
TL7124.TEST1.V823.AMTX.KE.D               
TL7124.TEST1.V823.AMTX.KE.I               
TL7124.TEST1.V823.AM4A.DWH.KE             
TL7124.TEST1.V823.AM4A.DWH.KE.D           
TL7124.TEST1.V823.AM4A.DWH.KE.I           
TL7124.TEST1.V823.ASC1.ARD390.CNTL.CRDS.SE
TL7124.TEST1.V823.ASC2.ASU015.CNTL.CRDS.SE
TL7124.TEST1.V823.ASLM.KE                 
TL7124.TEST1.V823.ASLM.KE.D               
TL7124.TEST1.V823.ASLM.KE.I               
TL7124.TEST1.V823.ASTRG.AGD040.GD         
TL7124.TEST1.V823.ASTRG.AGD040.GD.G0014V00
TL7124.TEST1.V823.ASTRG.AGD040.GD.G0015V00
TL7124.TEST1.V823.ASTRG.AGD040.GD.G0016V00
TL7124.TEST1.V823.ASTRG.AGD041.GD         
TL7124.TEST1.V823.ASTRG.AGD041.GD.G0015V00


The desired OUTPUT requested should have the following

1. All the D/DATA and I/INDEX at the end of the DSN name should not be
picked.
2. All the Generations should be dropped. But the base should be picked.


In our shop we are using SYNCSORT 1.3.1.

Is there any other way of fetching the data?
Back to top
View user's profile Send private message
himanshu7

Active User


Joined: 28 Aug 2007
Posts: 131
Location: At Desk

PostPosted: Fri Apr 03, 2009 11:12 am
Reply with quote

Hi All,

Resolved the above iisue using this code.
Scanned the entire data and found the string mentioned in the code are not used by any other records.
This will only work for specific records.

Code:
OPTION COPY                                         
OMIT COND=(1,64,SS,EQ,C'.G00',OR,1,64,SS,EQ,C'.DATA',
           OR,1,64,SS,EQ,C'.INDEX',OR,               
           1,64,SS,EQ,C'KE.D ',OR,                   
           1,64,SS,EQ,C'KE.I ')                     

Thank you!!!
Back to top
View user's profile Send private message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Fri Apr 03, 2009 11:21 am
Reply with quote

himanshu7
If you have SYNCSORT 1.3 version, then you can use the below sort card, which is logically same as yours, but a smaller one.

Code:
 OPTION COPY                                                           
 OMIT COND=(1,64,SS,EQ,L(C'.G00',C'.DATA',C'.INDEX',C'KE.D ',C'KE.I '))
Back to top
View user's profile Send private message
himanshu7

Active User


Joined: 28 Aug 2007
Posts: 131
Location: At Desk

PostPosted: Fri Apr 03, 2009 11:30 am
Reply with quote

Thank you Kris...
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(F1 & F2) and writ... JCL & VSAM 8
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 Join multiple records using splice DFSORT/ICETOOL 5
No new posts EZT program to build a flat file with... All Other Mainframe Topics 9
Search our Forums:

Back to Top