What is the use of DELGEN in DB2? Can we Write the program
with out using it?
Answer Posted / deepak gairola
DCLGEN(Declaration Genrator) is used to generate DB2
equivalent Cobol Datatypes. We can write a cobol Db2
program without using it but we will have to declare cobol
variables in our Program and for sure it need to be DB2
Equivalent... but it is preffered to use DCLgen as it gives
you the accurate... equivalent... of db2 datatype...and it
enhances the performance no doubt...
For Sql Datatype is Name Varchar(20).
so cobol equivalent is
01 Name.
49 Name-len PIC s9(04) comp.
49 Name-text pic x(2).
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is copy pending status in db2?
Which component is used to execute the sql statements?
When a COBOL-DB2 program in PRODUCTION is updating main tables and gone for long run, what have to do?
How to view db2 table structure?
What is the use of predicate?
Outputs of explain are with matchcols = 0. What does this signify?
Explain package in db2 and its advantages?
What is plan in cobol db2?
What are bind parameters in db2?
Why select is not preferred in embedded sql programs?
What is the role of union all and union
What are packages in db2?
Comment whether the cursor is closed during commit or not.
How is the value function used?
How to execute stored procedures?