How to copy VSAM files without using REPRO
Answers were Sorted based on User's Feedback
Answer / gourav bibhor
//jobcard
//STEP1 DD EXEC PGM=IDCAMS
//SYSIN DD *
REPRO IDS(FILENAMEOFSORCE)-
ODS(FILENAMEOFDESTINATION)
/*
//SYSOUT DD DSN=*
//SYSPRINT DD DSN=*
Is This Answer Correct ? | 3 Yes | 2 No |
What is a GDG? Why do we go for a GDG ? utility used to create GDG?
What are the valid DSORG values ?
Explain about LMPUT-
what do you mean By spooling? Expand SPOOL?
Wrete a JCL to compare two files and mached records move to onc file & un mached rows wants to another file?
13 Answers CGI, DSRC, IBM,
Explain dd statement in jcl?
When output dataset space is required, what quantity categories are used?
What is order of searching of the libraries in a JCL?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
How to fetch even records from one file to another file by using ICETOOL in JCL?
can i sort packed decimal if i can tell the syntax
Hi, I have 3 files say file A , file B and file C.I want to form an output file in which i will have all the records from file A. Files B and C also may contain records that are present in file A.I want those records also to be included in my output file. for eg: file A contains: 1 2 3 file B contains: 2 4 5 file C contains: 1 3 5 So in my output file should look like: 1 2 3 2 1 3 Can any one help ???.....thanks in advance.