What are the contents of a DCLGEN?

Answer Posted / maveric

1. EXEC SQL DECLARE TABLE statement which gives the layout of the table/view in terms of DB2 datatypes.
2. A host language copy book that gives the host variable definitions for the column names.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain in brief how does db2 determine what lock-size to use?

589


what is the responsibility of the construction superintendent

1657


What are catalog tables in db2?

601


Which isolation level provides maximum concurrency?

658


What is rct?

747






SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

2144


what is db2 restart?

1685


Why do we need reorg in db2?

558


What is the syntax for FETCH in DB2 ?

668


Define data page.

626


What is database manager in db2?

545


What is host variable in db2 cobol?

596


What is the usage of open cursor command?

599


Explain package in db2 and its advantages?

589


What is collection in db2 bind?

569