wht steps we need will coding cobol and db2 pgm ?
Answer Posted / niveditha
This question does not make any sense. please explain correctly
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What are the bind parameters ibm db2?
What is host variable in db2 cobol?
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.
What is sqlca’s maximum length?
Explain in detail about buffer manager and its functionalities?
How can you do the explain of a dynamic sql statement?
Differentiate between cs and rr isolation levels? Where do you specify them?
How does a cursor work?
run jcl for cobol+db2 pgm?.. //jobcard //step001 exec pgm=ikjeft01 //systin dd * DSNSYSTEM(--------) RUN PROGRAM(MYPGMNAME) PLAN(-----), LIB(-------), PARMS(------) /* WHAT WILL U GIVE INSIDE THE BRACKETS... WHAT IS PLAN,PACKAGE,BIND?..PLAN N PACAKGES ARE GENERATED BY ?...
In an sql table that is embedded, what is the procedure to retrieve rows that are part of a db2 table?
When reorg is used?
When the like statement is used?
What is cursor with hold option in db2?
What does sqlcabc has?
What is the maximum No of rows per page?