In cursor program-1 can we create another cursor program-2
inside the cursor program-1.If yes how/no why ?

Answer Posted / lvr_rams

yes it can possible. Multibull cursor we can used.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to check sequence on a table in db2?

609


What are the various isolation levels possible?

657


What do you mean by commit and rollback?

605


What is the difference between db2 and oracle?

685


What is reorg?

627






Explain how can you do the explain of a dynamic sql statement?

669


What does runstats do in db2?

613


Can you tell me how can you find out the # of rows updated after an update statement?

621


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.

2160


Discuss about db2 bind?

678


Explain db2.

630


What is data manager?

614


How to get the ddl of a table in db2?

685


What is package in cobol db2?

709


Which isolation level provides maximum concurrency?

673