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 |
in how many mode we can open a file ?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
Without using move verb how to move one variable to another.
when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).
Why IBM?
how to resolve the file status 47.......
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
can we declare s9(9)v9(9) in cobol ? if yes how many bytes it will occupy ?(urgent plz answer it)
what is the difference between COBOL2 AND COBOL390?