How can i load all the data from a file to Table (array) in
cobol.How i manage the occurs clause with out reading the
file.Any options avilable ? Please can any one help me it
is urgent?
No Answer is Posted For this Question
Be the First to Post Answer
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?
What are the different data types in cobol?
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
what is sync clause?
can anyone explain me the concept of COMP-4 PLEASE??
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
What is the maximum length of a field you can define using COMP-3 in COBOL?
For rewrite, why is it mandatory that file needs to be opened?
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is
what is the difference between external and global variables?
How are the next sentence and continue different from each other?