What are the different ways to run a COBOL DB2 program
using JCL?
Answers were Sorted based on User's Feedback
cobol + db2 programs can be compiled by using precompiler(dsnhpc)...wich saperates cobol and db2 statements.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ravikumar
using ikjeft01 utility
//systsin dd *
run program(pgm name) plan(plan name)
lib(lib name)
//
| Is This Answer Correct ? | 2 Yes | 1 No |
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
What the difference is between continue and next sentence?
can we read records in a file from botom to top. if possible how can we read
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
What is rmode(any) ?
what is the difference between Plan & package
in real time what is the suitable exp where in-stream procedure is better then catalog procedure.
) what is the difference between AID and HANDLE AID?
What was removed from COBOL in the COBOL II implementation?
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.