how can u identify the db2 from jcl ?
Answers were Sorted based on User's Feedback
Answer / lu
In JCL u see :
1) STEP1 EXEC PGM=IKJEFT01
2)SYSTSIN DD *
DSN SYSTEM(DSN)
RUN PROGRAM(PGM157) PLAN(PLAN157) -
LIB('IBMMFS.MACC.LOAD')
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / vimal
we can find that in bind statement. which means binding to
database
| Is This Answer Correct ? | 0 Yes | 3 No |
which statement is used to end the in-stream procedure in a jcl?
I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
What is the function of //cntl statement?
do we need to mention the location of catalogued procedure for each it's call in a single job?
How does jcl act on a cobol code?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
What are three major types of JCL statements? What are their functions?
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.
Explain about CBL/PROCESS statement syntax
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
The maximum number of in-stream procedure you can code in any JCL is ?
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.