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 |
what is the difference between Normal vaiable and comp variable.
what is the difference between PA & PF keys?
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.
What is SSRANGE, NOSSRANGE ?
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER
SSRange is used to do a range check on which of the Following. SUBSCRIPT,INDEX,REFERENCE MODIFICATION,Run-time option.
i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?
What is the significance of 'above the line' and 'below the line'?
Which Search verb is equivalent to PERFORM…VARYING?
how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array