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
How can record locking be achieved in those DB2 versions which do not support it?
What is a db2 table?
What are host variables in db2?
What is query_cache_limit?
What is the advantage in De-normalizing tables in DB2?
If anyone has IBM Certification Dumps pls forward to me & also let me know what are the Certification Codes that are available in DB2
Which isolation level provides maximum concurrency?
Explain dclgen.
What is the physical storage length of timestamp data type?
Explain the function of data manager.
what is the role of the cursor in db2?
How to run db2 command in windows?
Can you tell me how can you find out the # of rows updated after an update statement?
When the like statement is used?
Define check constraint.