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 to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
I hv ten records in ps file and i hv say some 15 records in vsam file .i hv empno and age in ps file n empno,empname,dept n desig in vsam file. i hv 2 read the ps file n check wid matching empno in vsam file and then insert all fields from ps and vsam into db2 table....plz help in writin the procedure division
When and how can we use index & subscript ?
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.
What are the cobol coding sheets?
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
s9(18) comp-3:: What is the size of memory it takes internally?
what is amode(24), amode(31), rmode(24) and rmode(any)?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
how do u indetify files succesfully executed or not ?
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?