|
|
| Author |
Message |
omprakshsharma
New User
Joined: 14 Apr 2005 Posts: 7 Location: Bhubaneswar
|
|
|
|
Hi,
If we have one file declared as FB but we need to change it to VB without affecting data stored in it or vice verse without using COBOL program.
I am expecting it thru JCL.
Please suggest me.
Thanks,
Om |
|
| Back to top |
|
 |
References
|
|
 |
superk
Moderator Team Head
Joined: 26 Apr 2004 Posts: 3304 Location: Charlotte,NC USA
|
|
| Back to top |
|
 |
sureshindira
New User
Joined: 21 Feb 2005 Posts: 12
|
|
|
|
//FBVB JOB A92,PROGRAMMER
//S1 EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=A123456.SORT.SAMPIN,DISP=SHR
//VBOUT DD DSN=A123456.SORT.VSAMP,DISP=(NEW,CATLG,DELETE),
// UNIT=3390,SPACE=(CYL,(5,5))
//SYSIN DD *
OPTION COPY
OUTFIL FNAMES=VBOUT,FTOV
/* |
|
| Back to top |
|
 |
|
|