What happens to a cursor after a commit?

Answer Posted / azharuddinsyed

If the cursor is defined with "WITH HOLD" option, it will NOT closed even after the commit operation, else cursor will be closed.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the various data types available in db2?

640


what is db2 restart?

1701


Comment whether dclgen is mandatorily used. If not, then what is the point of using it?

619


Why do we need reorg in db2?

570


What is bind package and plan in db2?

599






What is meant by union and union all?

595


What is cobol db2?

572


How can you do the explain of a dynamic sql statement?

639


What is cursor with hold option in db2?

620


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.

2158


What does db2 mean?

591


Mention a credible reason why select* is never given preference in an sql program that has been embedded.

727


What is temporal table in db2?

607


Which component is used to execute the sql statements?

632


What is the max length of sqlca?

774