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

can anyone tell me how to transfer the VSAM file to GDG ?


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

New User


Joined: 28 Jun 2008
Posts: 3
Location: Hyderabad

PostPosted: Fri Aug 01, 2008 2:50 pm
Reply with quote

How to transfer the VSAM file to GDG?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Aug 01, 2008 2:53 pm
Reply with quote

keep in mind a gdg is only a qsam file. so, vsam to qsam is easy - idcams, just use a gdg ds in the output dd statement.
Back to top
View user's profile Send private message
expat

Global Moderator


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

PostPosted: Fri Aug 01, 2008 3:01 pm
Reply with quote

IDCAMS REPRO or SORT should do it easily enough.
Back to top
View user's profile Send private message
rpuhlman

New User


Joined: 11 Jun 2007
Posts: 80
Location: Columbus, Ohio

PostPosted: Fri Aug 01, 2008 3:17 pm
Reply with quote

MD,

Try IDCAMS REPRO:
Code:
//STEP0001     EXEC PGM=IDCAMS                                         
//INFILE   DD  DSN=VSAM.DATASET.NAME,DISP=SHR   <--  EXAMPLE           
//OUTFILE  DD  DSN=GDG.DATASET.NAME(+1),           |                   
//             DISP=(NEW,CATLG,DELETE),            |                   
//             UNIT=????,                          |                   
//             SPACE=(CYL,(??,??),RLSE),           |                   
//             RECFM=??,LRECL=??,                  |                   
//             DCB=(MODEL.DSCB)                 <--  ONLY!             
//SYSIN    DD  *                                                       
 REPRO INFILE(INFILE) OUTFILE(OUTFILE)                                 
/*                                                                     
//SYSPRINT DD  SYSOUT=*                                                 
//SYSOUT   DD  SYSOUT=*                                                 
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 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
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