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

how to move a VB vsam file to a FB qsam file?


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

New User


Joined: 17 Sep 2003
Posts: 16

PostPosted: Wed Sep 07, 2005 2:51 pm
Reply with quote

which utility can i use?
is there any example jcl?
Back to top
View user's profile Send private message
Kevin

Active User


Joined: 25 Aug 2005
Posts: 234

PostPosted: Mon Sep 12, 2005 6:12 pm
Reply with quote

A standard DFSORT job should work:

Code:

//STEPXXXX EXEC PGM=SORT                                   
//SORTIN   DD   DISP=SHR,DSN=MY.VB.VSAM                   
//SORTOUT  DD   DSN=MY.FB.QSAM,DISP=(,CATLG,DELETE),
//         UNIT=SYSDA,SPACE=(CYL,(10,10),RLSE)             
//SYSOUT   DD   SYSOUT=*                                   
//SYSIN    DD   *                                           
  OPTION COPY                                               
  RECORD TYPE=V                                             
  OUTFIL VTOF,OUTREC=(1:5,required-length-of-records)                             
/*                                                         
//*             
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 2
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
Search our Forums:

Back to Top