Answer Posted / guest
It is a database used with VSE.
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is the motivation behind coding class parameter in job statement?
what is DSN parameter and DISP parameter is used for?
When space is allocated for an output dataset, what units can be used?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
i want to store 20 digits . how will u do it in cobol ?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
Can I share my data with other jobs? How?
How to run cobol program using jcl?
What is the function of the steplib dd statement?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
What do you understand by the terms: joblib and steplib?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.