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 COND parameter in JCL?
What is the function of //cntl statement?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?
How to copy VSAM files without using REPRO
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
Describe the DD statement, its meaning, syntax and keywords?
Can a temporary dataset be converted to permanent dataset and vice-versa in the middle of a job ?
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??
A dd statement consists of 4 fields. Name them?
what are the ways of passing data to a cobol program from jcl?
I have a File that has duplicate records. I need only those records that occur more than thrice.