What are the steps you go through while creating a COBOL
program executable?
Answers were Sorted based on User's Feedback
Answer / asmara
1. COBOL + DB2 Programm
2. Source code will store in link-edit
Extracted SQL statements store in DBRM
where the time tokens are taken
3. Link - edit will compile and send it to load module
4. DBRM after setting the token the input will send to BIND
5. BIND will check the SQL Statements and check the syntax
and compile it and send to Package
6. Package will hold only one DBRM at a time so No. of
Packages store in PLAN.
7. Plan Will execute the statements
8. Finally it will combine and if the time stamp matches it
will exectue otherwise the time stamp mismatch error will
occur which -818.
if you want to resolve then u want to do the precompilation
again.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / siddu
steps:
1.design the program
2.code the program
3.compile the program(IGYCRCTL)
4.link-edit the program(IEWL/HEWL)
5.execution
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nagaraju
1.design the program
2.code the program
3.compile the program(IGYCRCTL)
4.link-edit the program(IEWL/HEWL)
5.execution
| Is This Answer Correct ? | 0 Yes | 0 No |
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
How do you code Cobol to access a parameter that has been defined in JCL?
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.
what is call by value and call by reference ?
3 Answers Infosys, ITC Indian Tobacco Company,
Can we use redefine clause in occurs clause?
How to delete leading spaces/blank in COBOL ? Example:- 01 data-name-1 pic x(220) " English is a language". I would like to delete leading spaces.
How to read the last 100 records from a COBOL file. The file contains N number of records.
What is R-mode and A-mode?
What COBOL construct is the COBOL II EVALUATE meant to replace?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?