What is the difference between copy and include in cobol?
Answer / srinivas
As far as I know, we use INCLUDE in COBOL-DB2 programs to copy the contents of the DCLGEN to the program. The only difference between INCLUDE and COPY is that while INCLUDE is executed at pre-compile time (by the SQL compiler), COPY is executed at compile time(by the COBOL compiler)
| Is This Answer Correct ? | 0 Yes | 0 No |
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
What is the maximum size of a 01 level item in COBOL I? in COBOL II?
What are the functions like c or c++ in cobol?
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
Why occurs cannot be used in 01 level in COBOL?
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
What is the difference between comp and comp-3?
What is SDSF?
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
can you declare redefine in level 01?
What are the access modes of START statement?