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 |
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
how to convert the recors form vsam file to db2 table tru file aid
What will happen if we generate GDG +2 version instead of +1 version?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
In an EVALUTE statement is the order of the WHEN clauses significant?
Explain complete concept of table handling in COBOL with an example?
Can anyone please give the example of Inline Perform.
a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?
give the examples of strings in cobol